/* ==========================================================================
   TYPOGRAPHY SYSTEM: POPPINS (HEADINGS) + INTER (BODY)
   ========================================================================== */
:root {
    --font-sans: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
    --font-heading: 'Poppins', 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
}

h1, h2, h3, h4, h5, h6, .hero-title, .section-title, .card-title, .heading-font {
    font-family: var(--font-heading) !important;
}

body, p, span, a, button, input, textarea, select, li, label, td, th {
    font-family: var(--font-sans);
}
/* ==========================================================================
   DESIGN SYSTEM & CUSTOM PROPERTIES
   ========================================================================== */
:root {
    /* Colors */
    --color-primary: #f25f38;        /* Coral Orange Accent */
    --color-brand-blue: #1E5EFF;     /* Primary Brand Blue for Typewriter Word & Highlights */
    --color-primary-light: #ffece8;  /* Light Badge Background */
    --color-primary-dark: #d64a25;   /* Darker Coral Hover */
    --color-dark: #1a1a1a;           /* Headings, Dark buttons */
    --color-dark-bg: #0f0f11;        /* Section 2 Black Background */
    --color-card-bg: #18181b;        /* Dark Card Background */
    --color-card-border: #27272a;    /* Dark Card Border */
    --color-text: #4f4f4f;           /* Body copy, lighter text */
    --color-bg-light: #fefefe;       /* Base light background */
    --color-border: #e2e8f0;         /* Light borders */
    
    /* Typography */
    --font-sans: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-heading: 'Outfit', var(--font-sans);
    
    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-lg: 0 20px 40px -5px rgba(0, 0, 0, 0.06), 0 10px 20px -5px rgba(0, 0, 0, 0.03);
    --shadow-premium: 0 30px 60px -10px rgba(242, 95, 56, 0.12), 0 10px 30px -10px rgba(0, 0, 0, 0.08);
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-sans);
    background: #ffffff;
    color: var(--color-text);
    min-height: 100vh;
    line-height: 1.5;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

img {
    max-width: 100%;
    height: auto;
}

/* ==========================================================================
   TYPOGRAPHY UTILITIES
   ========================================================================== */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--color-dark);
    font-weight: 700;
    line-height: 1.2;
}

.text-gradient {
    color: var(--color-primary);
}

.text-blue-highlight {
    color: var(--color-brand-blue); /* #1E5EFF */
    font-weight: 600;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn-black {
    background: var(--color-dark);
    color: #ffffff;
    padding: 13px 26px;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: -0.01em;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--color-dark);
}

.btn-black:hover {
    background: transparent;
    color: var(--color-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-primary {
    background: var(--color-primary);
    color: #ffffff;
    padding: 15px 32px;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.98rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid var(--color-primary);
    box-shadow: 0 4px 14px rgba(242, 95, 56, 0.25);
}

.btn-primary:hover {
    background: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(242, 95, 56, 0.35);
}

.btn-primary .btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    color: var(--color-primary);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.btn-primary:hover .btn-icon {
    transform: translateX(4px);
}

.btn-secondary {
    background: #ffffff;
    color: var(--color-dark);
    padding: 15px 32px;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.98rem;
    display: inline-block;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    border-color: var(--color-dark);
    background: #fafafa;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ==========================================================================
   UNIFIED HERO SECTION (INCLUDES HEADER) WITH REDUCED OPACITY LIGHT TINT
   ========================================================================== */
.hero-section {
    padding: 0 0 90px 0;
    position: relative;
    background: linear-gradient(to left, 
        rgba(242, 95, 56, 0.08) 0%, 
        rgba(254, 215, 201, 0.16) 45%, 
        rgba(255, 255, 255, 0.95) 85%, 
        #ffffff 100%);
    overflow: hidden;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 160px;
    background: linear-gradient(to bottom, 
        rgba(255, 255, 255, 0) 0%, 
        rgba(255, 255, 255, 0.6) 40%, 
        rgba(255, 255, 255, 0.95) 85%, 
        #ffffff 100%);
    pointer-events: none;
    z-index: 4;
}

/* Integrated Header */
.site-header {
    width: 100%;
    padding: 18px 0;
    position: relative;
    z-index: 100;
    background: transparent;
}

.header-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo Image Styling */
.logo {
    display: flex;
    align-items: center;
}

.header-logo-img {
    height: 65px !important;
    max-height: 80px !important;
    width: auto !important;
    max-width: 280px !important;
    object-fit: contain;
    display: block;
    transition: transform 0.3s ease;
}

.logo:hover .header-logo-img {
    transform: scale(1.04);
}

/* Main Nav */
.main-nav {
    display: block;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--color-text);
}

.nav-link:hover, .nav-link.active {
    color: var(--color-primary);
}

/* Mobile Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 101;
}

.mobile-menu-toggle .bar {
    width: 100%;
    height: 2px;
    background: var(--color-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hero Content Grid */
.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 24px 24px 0 24px;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
    gap: 36px;
    position: relative;
    z-index: 5;
}

/* Hero Content */
.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Badge */
.hero-content .badge {
    background: var(--color-primary-light);
    color: var(--color-primary);
    padding: 7px 18px;
    border-radius: 9999px;
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
    box-shadow: 0 2px 8px rgba(242, 95, 56, 0.08);
}

/* Heading */
.hero-title {
    font-size: 3.35rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 18px;
    max-width: 740px;
    line-height: 1.22;
}

.hero-line-1 {
    white-space: nowrap;
    display: inline-block;
    max-width: 100%;
}

/* ==========================================================================
   TYPEWRITER ANIMATED WORD EFFECT
   ========================================================================== */
.typewriter-container {
    display: inline-flex;
    align-items: baseline;
    position: relative;
    color: var(--color-brand-blue); /* #1E5EFF */
    font-weight: 800;
    min-height: 1.2em;
    vertical-align: top;
}

.typewriter-text {
    color: var(--color-brand-blue); /* #1E5EFF */
    font-weight: 800;
    white-space: nowrap;
    display: inline-block;
    min-height: 1.2em;
    line-height: 1.2em;
}

.typewriter-text:empty::before {
    content: "\00a0";
    visibility: hidden;
}

.typewriter-cursor {
    color: var(--color-brand-blue);
    font-weight: 400;
    margin-left: 2px;
    display: inline-block;
    line-height: 1.2em;
    animation: blinkCursor 0.8s infinite;
}

@keyframes blinkCursor {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
    .typewriter-cursor {
        display: none;
    }
}

/* Subtitle */
.hero-description {
    font-size: 1.08rem;
    line-height: 1.6;
    color: var(--color-text);
    margin-bottom: 28px;
    max-width: 520px;
}

/* Action Buttons */
.hero-actions {
    display: flex;
    gap: 14px;
    margin-bottom: 40px;
}

/* Trust Social Proof */
.trust-container {
    width: 100%;
    border-top: none;
    padding-top: 0;
}

.trust-text {
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--color-dark);
    margin-bottom: 0;
}

.trust-highlight {
    color: var(--color-primary);
    font-weight: 700;
}

/* ==========================================================================
   HERO VISUAL / IMAGE
   ========================================================================== */
.hero-visual {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

.bg-watermark {
    position: absolute;
    right: 0;
    top: 45%;
    transform: translateY(-50%);
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 14rem;
    line-height: 1;
    color: #f25f38;
    opacity: 0.04;
    pointer-events: none;
    user-select: none;
    z-index: 1;
}

.portrait-wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    width: 100%;
}

.portrait-img {
    max-width: 110%;
    max-height: 580px;
    height: auto;
    object-fit: contain;
    transform-origin: bottom center;
    -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 75%, rgba(0,0,0,0.2) 95%, rgba(0,0,0,0) 100%);
    mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 75%, rgba(0,0,0,0.2) 95%, rgba(0,0,0,0) 100%);
}

.overlay-card {
    position: absolute;
    bottom: 12%;
    left: -10px;
    background: #ffffff;
    padding: 14px 20px 16px 20px;
    border-radius: 16px;
    box-shadow: var(--shadow-premium);
    display: flex;
    align-items: center;
    gap: 14px;
    z-index: 10;
    border: 1px solid rgba(255, 255, 255, 0.9);
    width: 235px;
}

.card-avatars {
    display: flex;
}

.avatar-img {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 2px solid #ffffff;
    margin-right: -10px;
    object-fit: cover;
    box-shadow: var(--shadow-sm);
}

.card-info {
    display: flex;
    flex-direction: column;
}

.card-number {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--color-dark);
    line-height: 1.1;
}

.card-label {
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--color-text);
    line-height: 1.2;
}

.card-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #f1f5f9;
    border-radius: 0 0 16px 16px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    width: 82%;
    background: var(--color-primary);
    border-radius: 0 0 0 16px;
}

/* ==========================================================================
   SECTION 2: HOW WE HELP LEADERS GROW
   ========================================================================== */
.section-services {
    background: #ffffff;
    padding: 85px 0;
    position: relative;
    z-index: 10;
    overflow: hidden;
}

.services-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    gap: 36px;
    align-items: center;
}

.services-header-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.badge-orange {
    background: #ffece8;
    color: var(--color-primary);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 7px 16px;
    border-radius: 9999px;
    margin-bottom: 18px;
}

.services-title {
    font-size: 2.35rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--color-dark);
    margin-bottom: 16px;
    line-height: 1.2;
}

.services-description {
    font-size: 1rem;
    color: var(--color-text);
    line-height: 1.6;
    margin-bottom: 28px;
    max-width: 420px;
}

.services-action-row {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-icon-arrow {
    margin-left: 6px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.btn-black:hover .btn-icon-arrow {
    transform: translateX(4px);
}

.carousel-nav {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--color-primary);
    background: var(--color-primary);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 14px rgba(242, 95, 56, 0.35);
}

.nav-arrow:hover:not(:disabled) {
    background: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(242, 95, 56, 0.48);
}

.nav-arrow:disabled {
    opacity: 0.38;
    cursor: not-allowed;
    border-color: #fca5a5;
    background: #fdba74;
    box-shadow: none;
}

.services-slider-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 10px;
}

.services-track {
    display: flex;
    gap: 20px;
    transition: transform 0.45s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}

.service-card {
    flex: 0 0 calc((100% - 40px) / 3);
    min-width: 220px;
    background: #ffffff;
    border-radius: 22px;
    padding: 30px 22px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 16px 36px -6px rgba(0, 0, 0, 0.09), 0 6px 16px -3px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    transition: all 0.35s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 50px -8px rgba(242, 95, 56, 0.18), 0 12px 28px -4px rgba(0, 0, 0, 0.1);
    border-color: rgba(242, 95, 56, 0.3);
}

.service-icon-bg {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #ffece8;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-card-title {
    font-size: 1.18rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 10px;
}

.service-card-desc {
    font-size: 0.88rem;
    color: var(--color-text);
    line-height: 1.55;
    margin-bottom: 24px;
    flex-grow: 1;
}

.service-card-link {
    color: var(--color-primary);
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
}

.service-card-link .arrow-icon {
    transition: transform 0.3s ease;
}

.service-card:hover .service-card-link .arrow-icon {
    transform: translateX(4px);
}

/* ==========================================================================
   SECTION 3: ABOUT EXPLORE EXCELLENCE WITHIN
   ========================================================================== */
.section-about {
    background: #ffffff;
    padding: 85px 0;
    position: relative;
    z-index: 10;
}

.about-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 48px;
    align-items: center;
}

.about-visual-col {
    position: relative;
    width: 100%;
}

.about-image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.about-img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    border-radius: 24px;
    transition: transform 0.5s ease;
}

.about-image-wrapper:hover .about-img {
    transform: scale(1.03);
}

.play-btn-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #ffffff;
    color: var(--color-dark);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 5;
}

.play-btn-center:hover {
    transform: translate(-50%, -50%) scale(1.12);
    background: var(--color-primary);
    color: #ffffff;
    box-shadow: 0 12px 35px rgba(242, 95, 56, 0.4);
}

.about-overlay-box {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--color-primary);
    color: #ffffff;
    padding: 22px 28px;
    border-radius: 20px;
    max-width: 320px;
    box-shadow: 0 10px 30px rgba(242, 95, 56, 0.35);
    z-index: 5;
}

.overlay-box-title {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 12px;
}

.overlay-box-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.25s ease;
}

.overlay-box-link:hover {
    opacity: 0.9;
    text-decoration: underline;
}

.play-icon-sm {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.about-content-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.about-title {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--color-dark);
    margin-bottom: 18px;
    line-height: 1.2;
}

.about-description {
    font-size: 0.98rem;
    color: var(--color-text);
    line-height: 1.65;
    margin-bottom: 16px;
    max-width: 540px;
}

.about-description.secondary-desc {
    margin-bottom: 24px;
}

.about-metrics-grid {
    display: flex;
    align-items: flex-start;
    gap: 28px;
    margin-bottom: 24px;
    padding-top: 6px;
}

.about-metric-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.metric-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #ffece8;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.metric-text-group {
    display: flex;
    flex-direction: column;
}

.metric-val {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--color-dark);
    line-height: 1.1;
}

.metric-lbl {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--color-text);
    line-height: 1.25;
}

.about-signature {
    font-family: 'Caveat', cursive;
    font-size: 2.85rem;
    color: var(--color-dark);
    margin-top: 4px;
}

/* ==========================================================================
   SECTION 4: PURE REVIEW SLIDER WITH CIRCULAR AVATARS
   ========================================================================== */
.section-testimonial-cta {
    background: linear-gradient(to left, 
        rgba(242, 95, 56, 0.08) 0%, 
        rgba(254, 215, 201, 0.16) 45%, 
        rgba(255, 255, 255, 0.95) 85%, 
        #ffffff 100%);
    padding: 85px 0;
    position: relative;
    z-index: 10;
}

.testimonial-cta-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 48px;
    align-items: center;
}

/* Left Pure Review Box Column */
.review-box-col {
    width: 100%;
}

.review-card-box {
    background: #ffffff;
    border-radius: 24px;
    padding: 40px 36px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.05), 0 1px 3px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
}

.review-box-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.quote-mark {
    color: var(--color-dark);
    opacity: 0.85;
}

.review-nav {
    display: flex;
    align-items: center;
    gap: 10px;
}

.testimonial-text {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--color-dark);
    line-height: 1.45;
    margin-bottom: 24px;
    min-height: 4.2em;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Author Row with Circular Avatar */
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
    transition: opacity 0.3s ease;
}

.review-avatar-img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
    transition: opacity 0.3s ease;
}

.author-info-group {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 2px;
}

.author-title {
    font-size: 0.88rem;
    color: #71717a;
    font-weight: 500;
}

/* Pagination Dots */
.testimonial-dots {
    display: flex;
    gap: 8px;
    align-items: center;
}

.testimonial-dots .dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #d1d5db;
    transition: all 0.3s ease;
    cursor: pointer;
}

.testimonial-dots .dot.active {
    background: var(--color-primary);
    width: 12px;
    height: 12px;
}

/* Right CTA Card Column */
.cta-card-col {
    width: 100%;
}

.cta-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 40px 32px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.cta-card-title {
    font-size: 1.65rem;
    font-weight: 800;
    color: var(--color-dark);
    margin-bottom: 12px;
    line-height: 1.25;
}

.cta-card-desc {
    font-size: 0.95rem;
    color: var(--color-text);
    line-height: 1.6;
    margin-bottom: 28px;
}

.btn-cta {
    width: 100%;
    justify-content: center;
}

/* ==========================================================================
   SECTION 5: INLINE CAL.COM BOOKING SECTION (SEAMLESS, BORDERLESS)
   ========================================================================== */
.section-booking {
    background: #ffffff;
    padding: 85px 0;
    position: relative;
    z-index: 10;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.booking-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.booking-title {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--color-dark);
    margin-bottom: 14px;
    line-height: 1.2;
}

.booking-subtitle {
    font-size: 1rem;
    color: var(--color-text);
    line-height: 1.6;
    max-width: 600px;
    margin-bottom: 32px;
}

.cal-embed-wrapper {
    width: 100%;
    min-height: 650px;
    background: transparent;
    border: none;
    box-shadow: none;
    border-radius: 0;
    overflow: visible;
}

/* ==========================================================================
   FOOTER SECTION
   ========================================================================== */
.site-footer {
    position: relative;
    z-index: 10;
    background: linear-gradient(to left, 
        rgba(242, 95, 56, 0.08) 0%, 
        rgba(254, 215, 201, 0.16) 45%, 
        rgba(255, 255, 255, 0.95) 85%, 
        #ffffff 100%);
    border-top: 1px solid rgba(242, 95, 56, 0.15);
    padding: 75px 0 30px 0;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1.4fr;
    gap: 48px;
    margin-bottom: 50px;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 16px;
}

.footer-logo-img {
    height: 40px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

.footer-brand-desc {
    font-size: 0.92rem;
    color: var(--color-text);
    line-height: 1.6;
    margin-bottom: 24px;
    max-width: 320px;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 14px;
}

.social-icon-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    text-decoration: none;
}

/* WhatsApp (Official Green #25D366) */
.social-icon-btn.sm-wa {
    background: #25D366;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.35);
}
.social-icon-btn.sm-wa:hover {
    background: #20bd5a;
    transform: translateY(-3px) scale(1.08);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.5);
}

/* Email (Official Red #EA4335) */
.social-icon-btn.sm-email {
    background: #EA4335;
    box-shadow: 0 4px 12px rgba(234, 67, 53, 0.35);
}
.social-icon-btn.sm-email:hover {
    background: #d93025;
    transform: translateY(-3px) scale(1.08);
    box-shadow: 0 8px 20px rgba(234, 67, 53, 0.5);
}

/* X / Twitter (Official Black #0f1419) */
.social-icon-btn.sm-x {
    background: #0f1419;
    box-shadow: 0 4px 12px rgba(15, 20, 25, 0.35);
}
.social-icon-btn.sm-x:hover {
    background: #27272a;
    transform: translateY(-3px) scale(1.08);
    box-shadow: 0 8px 20px rgba(15, 20, 25, 0.5);
}

/* Facebook (Official Blue #1877F2) */
.social-icon-btn.sm-fb {
    background: #1877F2;
    box-shadow: 0 4px 12px rgba(24, 119, 242, 0.35);
}
.social-icon-btn.sm-fb:hover {
    background: #166fe5;
    transform: translateY(-3px) scale(1.08);
    box-shadow: 0 8px 20px rgba(24, 119, 242, 0.5);
}

.footer-col-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 18px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 0.95rem;
    color: var(--color-text);
    font-weight: 500;
    transition: color 0.25s ease;
}

.footer-links a:hover {
    color: var(--color-primary);
}

.footer-address {
    font-style: normal;
    font-size: 0.92rem;
    color: var(--color-text);
    line-height: 1.65;
    margin-bottom: 20px;
    font-weight: 500;
}

.footer-connect {
    font-size: 0.95rem;
    color: var(--color-dark);
    font-weight: 600;
    line-height: 1.6;
}

.connect-label {
    font-weight: 700;
    color: var(--color-dark);
    margin-right: 4px;
}

.connect-link {
    color: var(--color-primary);
    font-weight: 600;
    transition: color 0.25s ease;
}

.connect-link:hover {
    color: var(--color-primary-dark);
    text-decoration: underline;
}

.connect-sep {
    color: var(--color-text);
    margin: 0 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    padding-top: 24px;
    text-align: center;
    font-size: 0.85rem;
    color: #71717a;
}

/* Responsive Media Queries */
@media (min-width: 1441px) and (max-width: 1600px) {
    .header-container,
    .hero-container,
    .services-container,
    .about-container,
    .testimonial-cta-container,
    .booking-container,
    .footer-container {
        padding-left: 16px;
        padding-right: 16px;
        max-width: 1400px;
    }
    
    .hero-title {
        font-size: 3.75rem;
    }
    
    .hero-description {
        font-size: 1.15rem;
    }
    
    .services-title {
        font-size: 2.6rem;
    }
    
    .about-title,
    .booking-title {
        font-size: 2.75rem;
    }
    
    .testimonial-text {
        font-size: 1.45rem;
    }
    
    .cta-card-title {
        font-size: 1.8rem;
    }
    
    .portrait-img {
        max-height: 620px;
    }
}

@media (min-width: 1025px) and (max-width: 1440px) {
    .header-container,
    .hero-container,
    .services-container,
    .about-container,
    .testimonial-cta-container,
    .booking-container,
    .footer-container {
        padding-left: 44px;
        padding-right: 44px;
    }
    
    .hero-section {
        padding-bottom: 75px;
    }
    
    .hero-title {
        font-size: 2.95rem;
    }
    
    .hero-description {
        font-size: 1.0rem;
    }
    
    .portrait-img {
        max-height: 500px;
    }
    
    .section-services,
    .section-about,
    .section-testimonial-cta,
    .section-booking {
        padding: 75px 0;
    }
    
    .services-title,
    .about-title,
    .booking-title {
        font-size: 2.15rem;
    }
    
    .testimonial-text {
        font-size: 1.25rem;
    }
    
    .cta-card-title {
        font-size: 1.55rem;
    }
    
    .services-description,
    .about-description,
    .booking-subtitle {
        font-size: 0.95rem;
    }
    
    .site-footer {
        padding: 60px 0 24px 0;
    }
}

@media (max-width: 1140px) {
    .service-card {
        flex: 0 0 calc((100% - 20px) / 2);
    }
    
    .testimonial-cta-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-grid {
        gap: 32px;
    }
}

@media (max-width: 1024px) {
    .header-container {
        padding: 0 20px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        padding: 20px 20px 0 20px;
        gap: 48px;
    }
    
    .hero-content {
        align-items: center;
        text-align: center;
    }
    
    .hero-description {
        max-width: 600px;
    }
    
    .hero-visual {
        justify-content: center;
        margin-top: 10px;
    }
    
    .portrait-wrapper {
        justify-content: center;
        max-width: 480px;
        margin: 0 auto;
    }
    
    .portrait-img {
        max-width: 100%;
        max-height: 480px;
    }
    
    .overlay-card {
        left: -10px;
        bottom: 10%;
    }
    
    .bg-watermark {
        font-size: 11rem;
        left: 50%;
        transform: translate(-50%, -50%);
        right: auto;
    }
    
    .services-container,
    .about-container {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    
    .services-header-col,
    .about-content-col {
        align-items: center;
        text-align: center;
    }
    
    .services-description,
    .about-description {
        max-width: 600px;
    }
    
    .about-metrics-grid {
        justify-content: center;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
        text-align: center;
    }
    
    .footer-col {
        align-items: center;
    }
    
    .footer-brand-desc {
        max-width: 480px;
    }
}

@media (max-width: 800px) {
    .main-nav, .header-action {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .services-title,
    .about-title,
    .booking-title {
        font-size: 1.85rem;
    }
    
    .review-card-box {
        padding: 28px 20px;
    }
    
    .header-logo-img {
        height: 34px;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        justify-content: center;
        padding: 14px 28px;
    }
    
    .overlay-card {
        left: 50%;
        transform: translateX(-50%);
        bottom: 6%;
        width: 220px;
    }
    
    .service-card {
        flex: 0 0 100%;
    }
    
    .about-metrics-grid {
        flex-direction: column;
        align-items: center;
        gap: 18px;
    }
    
    .about-overlay-box {
        left: 10px;
        right: 10px;
        bottom: 10px;
        max-width: none;
        padding: 16px 20px;
    }
    
    .cta-card {
        padding: 28px 20px;
    }
}


/* ==========================================================================
   LEADVAULT HERO SECTION DESIGN STYLES (ORANGE TINT RIGHT-TO-LEFT)
   ========================================================================== */
.leadvault-hero {
    position: relative;
    background: linear-gradient(to left, 
        rgba(242, 95, 56, 0.16) 0%, 
        rgba(254, 215, 201, 0.28) 35%, 
        rgba(255, 245, 242, 0.65) 65%, 
        #ffffff 100%);
    overflow: hidden;
    padding-bottom: 70px;
}

.leadvault-hero::after {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 65%;
    height: 120%;
    background: radial-gradient(circle at 75% 45%, 
        rgba(242, 95, 56, 0.22) 0%, 
        rgba(254, 215, 201, 0.35) 40%, 
        rgba(255, 255, 255, 0) 70%);
    pointer-events: none;
    z-index: 1;
}

.leadvault-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 48px;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
    padding: 40px 24px;
    position: relative;
    z-index: 2;
}

/* Nav Active Link Orange */
.main-nav .nav-link.active, .main-nav .nav-link:hover {
    color: #f25f38 !important;
    font-weight: 600;
}

/* Badge Pill */
.badge-pill {
    display: inline-block;
    background: #FFF0ED;
    color: #f25f38;
    border: 1px solid rgba(242, 95, 56, 0.2);
    padding: 6px 16px;
    border-radius: 9999px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 24px;
}

.leadvault-hero .hero-title {
    font-size: 3.3rem;
    font-weight: 800;
    line-height: 1.15;
    color: #0f172a;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.leadvault-hero .text-blue-highlight {
    color: #1E5EFF !important;
    font-weight: 800;
}

.leadvault-hero .hero-description {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #475569;
    margin-bottom: 32px;
    max-width: 540px;
}

.feature-highlights-row {
    display: flex;
    gap: 28px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-icon-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #EEF2FF;
    color: #1E5EFF;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-text {
    display: flex;
    flex-direction: column;
}

.feature-text strong {
    font-size: 0.88rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.25;
}

.feature-text span {
    font-size: 0.78rem;
    color: #64748B;
}

/* BUTTON FIXES */
.hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
    flex-wrap: nowrap;
}

.btn-hero-primary {
    background: #0f0f11 !important;
    color: #ffffff !important;
    padding: 14px 28px !important;
    border-radius: 9999px !important;
    font-weight: 700 !important;
    font-size: 0.95rem !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    white-space: nowrap !important;
    border: none !important;
    box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 26px -5px rgba(0, 0, 0, 0.3);
}

.btn-hero-secondary {
    background: #ffffff !important;
    color: #0f0f11 !important;
    padding: 14px 28px !important;
    border-radius: 9999px !important;
    font-weight: 700 !important;
    font-size: 0.95rem !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    white-space: nowrap !important;
    border: 1px solid #cbd5e1 !important;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.btn-hero-secondary:hover {
    background: #f8fafc !important;
    border-color: #94a3b8 !important;
}

.micro-copy {
    font-size: 0.82rem;
    color: #64748B;
    margin-top: 14px;
}

/* SPREADSHEET WINDOW MOCKUP (PROPERLY PLACED OVER ORANGE TINT) */
.leadvault-visual {
    position: relative;
    z-index: 3;
}

.spreadsheet-window-wrapper {
    position: relative;
    padding: 10px;
    transform: perspective(1000px) rotateY(-3deg) rotateX(2deg);
    transition: transform 0.4s ease;
}

.spreadsheet-window-wrapper:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.sheets-badge {
    position: absolute;
    top: -14px;
    right: 28px;
    z-index: 10;
    background: #ffffff;
    border-radius: 12px;
    padding: 6px 8px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.12), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.spreadsheet-card {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 25px 50px -12px rgba(242, 95, 56, 0.18), 0 10px 20px -5px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.window-header {
    background: #f8fafc;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid #f1f5f9;
}

.window-header .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.dot-red { background: #cbd5e1; }
.dot-yellow { background: #e2e8f0; }
.dot-green { background: #f1f5f9; }

.table-container {
    overflow-x: auto;
    padding: 4px;
}

.leads-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.78rem;
}

.leads-table th {
    background: #f8fafc;
    padding: 10px 14px;
    text-align: left;
    font-weight: 700;
    color: #1e293b;
    border-bottom: 1.5px solid #e2e8f0;
    white-space: nowrap;
}

.leads-table td {
    padding: 10px 14px;
    color: #475569;
    border-bottom: 1px solid #f1f5f9;
    white-space: nowrap;
}

.leads-table tr:last-child td {
    border-bottom: none;
}

.faded-row {
    opacity: 0.35;
}

.annotation-container {
    margin-top: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.annotation-text {
    font-family: 'Caveat', cursive, var(--font-sans);
    font-size: 1.4rem;
    font-weight: 700;
    color: #1E5EFF;
}

/* RESPONSIVE LAYOUT */
@media (max-width: 992px) {
    .leadvault-grid {
        grid-template-columns: 1fr;
        padding: 20px 16px;
    }
    .leadvault-hero .hero-title {
        font-size: 2.4rem;
    }
    .hero-actions {
        flex-wrap: wrap;
    }
    .spreadsheet-window-wrapper {
        transform: none;
    }
}


/* HERO MAIN IMAGE STYLES (OVER ORANGE TINT) */
.leadvault-visual {
    position: relative;
    z-index: 3;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-img-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-main-img {
    width: 100%;
    max-width: 620px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 35px rgba(242, 95, 56, 0.15)) drop-shadow(0 8px 15px rgba(0, 0, 0, 0.08));
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-main-img:hover {
    transform: translateY(-4px) scale(1.015);
}


/* ==========================================================================
   TABLE WEBSITE & REAL INSTAGRAM / FACEBOOK LOGOS & TAGS
   ========================================================================== */
.website-cell {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #2563eb;
    font-weight: 500;
}

.site-icon {
    flex-shrink: 0;
}

.social-tags-container {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: nowrap;
}

.social-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 3px 9px;
    border-radius: 6px;
    font-size: 0.74rem;
    font-weight: 600;
}

.ig-tag {
    background: #FDF2F8;
    color: #9D174D;
    border: 1px solid #FBCFE8;
}

.fb-tag {
    background: #EFF6FF;
    color: #1E40AF;
    border: 1px solid #BFDBFE;
}

.sheets-badge {
    position: absolute;
    top: -16px;
    right: 24px;
    z-index: 10;
    background: #ffffff;
    border-radius: 14px;
    padding: 6px;
    box-shadow: 0 12px 28px -5px rgba(0, 0, 0, 0.16), 0 4px 6px -2px rgba(0, 0, 0, 0.08);
}


/* LINKEDIN, TWITTER & CATEGORY CELL STYLES */
.cat-cell {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #475569;
}

.li-tag {
    background: #F0F7FF;
    color: #0A66C2;
    border: 1px solid #BAE6FD;
}

.tw-tag {
    background: #F0F9FF;
    color: #0284C7;
    border: 1px solid #BAE6FD;
}

/* ==========================================================================
   EXACT ORIGINAL BACKGROUND TINT (RIGHT TO LEFT)
   ========================================================================== */
.leadvault-hero, .hero-section {
    position: relative;
    background: linear-gradient(to left, 
        rgba(242, 95, 56, 0.08) 0%, 
        rgba(254, 215, 201, 0.16) 45%, 
        rgba(255, 255, 255, 0.95) 85%, 
        #ffffff 100%) !important;
    overflow: hidden;
}

.leadvault-hero::after, .hero-section::after {
    display: none !important;
}


/* ULTRA COMPACT 7-COLUMN FIT STYLES */
.compact-table {
    table-layout: fixed !important;
    width: 100% !important;
}

.compact-table th, .compact-table td {
    padding: 8px 4px !important;
    font-size: 0.68rem !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
}

.compact-table .social-tag {
    padding: 2px 4px !important;
    font-size: 0.65rem !important;
    gap: 3px !important;
}


/* HERO MAIN IMAGE STYLES */
.hero-img-wrapper {
    position: relative;
    z-index: 3;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-main-img {
    width: 100%;
    max-width: 580px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.12), 0 10px 20px -5px rgba(242, 95, 56, 0.08);
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.hero-main-img:hover {
    transform: translateY(-4px);
}


/* ORANGE TEXT & OVERSIZED UNBOXED HERO IMAGE BEHIND TEXT */
.text-orange {
    color: #f25f38 !important;
    font-weight: 800;
}

.leadvault-grid {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    position: relative !important;
    min-height: 540px !important;
    padding: 40px 24px !important;
}

.hero-content {
    position: relative !important;
    z-index: 5 !important;
    max-width: 640px !important;
}

.hero-visual.leadvault-visual {
    position: absolute !important;
    right: 10px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 52% !important;
    max-width: 680px !important;
    z-index: 2 !important;
    pointer-events: none;
}

.hero-img-wrapper {
    position: relative !important;
    width: 100% !important;
    display: block !important;
}

.hero-main-img {
    width: 100% !important;
    max-width: 680px !important;
    height: auto !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    border: none !important;
    background: transparent !important;
    object-fit: contain !important;
    display: block !important;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.08));
    transition: none !important;
}

/* STRIKETHROUGH PRICING ABOVE CTA */
.pricing-anchor {
    font-size: 0.88rem;
    color: #64748B;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.pricing-anchor s {
    color: #94A3B8;
    text-decoration: line-through;
    font-weight: 700;
    font-size: 0.95rem;
}

.pricing-anchor .discount-tag {
    background: #DC2626;
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 800;
    padding: 2px 7px;
    border-radius: 4px;
    letter-spacing: 0.04em;
}


/* TILTED RAW HERO IMAGE WITHOUT ANY CONTAINER BOX OR CARD FRAMING */
.tilted-wrapper {
    position: relative !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
}

.tilted-hero-img, .hero-main-img {
    width: 100% !important;
    max-width: 680px !important;
    height: auto !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    border: none !important;
    background: transparent !important;
    object-fit: contain !important;
    display: block !important;
    transform: perspective(1000px) rotateY(-4deg) rotateX(2deg) !important;
    transition: transform 0.4s ease !important;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.1)) !important;
}

.tilted-hero-img:hover, .hero-main-img:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg) !important;
}

/* HEADLINE BLOCK SPACING & PADDING */
.headline-block {
    display: block !important;
}

.block-problem {
    margin-bottom: 24px !important;
}

.block-solution {
    margin-top: 4px !important;
}


/* UNIFORM EQUAL LINE SPACING FOR HEADLINE */
.leadvault-hero .hero-title {
    font-size: 3.2rem !important;
    font-weight: 800 !important;
    line-height: 1.25 !important;
    color: #0f172a !important;
    margin-bottom: 24px !important;
    letter-spacing: -0.02em !important;
}

.headline-block {
    display: inline !important;
    margin: 0 !important;
    padding: 0 !important;
}


/* ==========================================================================
   15-INCH SINGLE SCREEN VIEWPORT OPTIMIZATION & VIBRANT ILLUSTRATIONS
   ========================================================================== */
.site-header {
    padding: 10px 0 !important;
}

.leadvault-hero {
    padding-bottom: 10px !important;
    min-height: calc(100vh - 20px) !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
}

.leadvault-grid {
    display: grid !important;
    grid-template-columns: 1.1fr 1fr !important;
    gap: 36px !important;
    align-items: center !important;
    max-width: 1280px !important;
    margin: 0 auto !important;
    padding: 16px 24px !important;
}

.badge-pill {
    margin-bottom: 14px !important;
    padding: 4px 14px !important;
    font-size: 0.75rem !important;
}

.leadvault-hero .hero-title {
    font-size: 2.6rem !important;
    line-height: 1.2 !important;
    margin-bottom: 14px !important;
}

.leadvault-hero .hero-description {
    font-size: 0.96rem !important;
    line-height: 1.5 !important;
    margin-bottom: 18px !important;
    max-width: 520px !important;
}

/* VIBRANT ILLUSTRATION BADGES */
.feature-highlights-row {
    gap: 20px !important;
    margin-bottom: 20px !important;
}

.illustration-badge {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 16px -4px rgba(0, 0, 0, 0.12);
}

.illus-verified {
    background: linear-gradient(135deg, #ECFDF5 0%, #D1FAE5 100%);
    border: 1px solid #A7F3D0;
}

.illus-social {
    background: linear-gradient(135deg, #EEF2FF 0%, #E0E7FF 100%);
    border: 1px solid #C7D2FE;
}

.illus-delivery {
    background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%);
    border: 1px solid #FDE68A;
}

.pricing-anchor {
    margin-bottom: 8px !important;
    font-size: 0.82rem !important;
}

.btn-hero-primary, .btn-hero-secondary {
    padding: 11px 24px !important;
    font-size: 0.88rem !important;
}

.micro-copy {
    margin-top: 10px !important;
    font-size: 0.8rem !important;
}

/* VECTOR-SHARP HD SPREADSHEET CARD */
.window-title-tab {
    font-size: 0.72rem;
    font-weight: 600;
    color: #64748B;
    margin-left: 10px;
}

.hd-vector-card {
    border-radius: 16px;
    border: 1px solid #cbd5e1 !important;
    box-shadow: 0 20px 40px -10px rgba(79, 70, 229, 0.16), 0 8px 16px -4px rgba(0, 0, 0, 0.06) !important;
    background: #ffffff !important;
}


/* ==========================================================================
   CLEAN HERO SECTION REVERTED STYLES
   ========================================================================== */
.leadvault-hero {
    position: relative;
    background: linear-gradient(to left, 
        rgba(242, 95, 56, 0.08) 0%, 
        rgba(254, 215, 201, 0.16) 45%, 
        rgba(255, 255, 255, 0.95) 85%, 
        #ffffff 100%) !important;
    overflow: hidden;
    padding-bottom: 70px;
}

.leadvault-hero::after {
    display: none !important;
}

.leadvault-grid {
    display: grid !important;
    grid-template-columns: 1.15fr 1fr !important;
    gap: 48px !important;
    align-items: center !important;
    max-width: 1280px !important;
    margin: 0 auto !important;
    padding: 40px 24px !important;
    position: relative !important;
    min-height: auto !important;
}

.hero-content {
    position: relative !important;
    z-index: 5 !important;
    max-width: 580px !important;
}

.leadvault-hero .hero-title {
    font-size: 3.1rem !important;
    font-weight: 800 !important;
    line-height: 1.22 !important;
    color: #0f172a !important;
    margin-bottom: 20px !important;
    letter-spacing: -0.02em !important;
}

.text-orange {
    color: #f25f38 !important;
    font-weight: 800;
}

.leadvault-hero .text-blue-highlight {
    color: #1E5EFF !important;
    font-weight: 800;
}

.hero-visual.leadvault-visual {
    position: relative !important;
    right: auto !important;
    top: auto !important;
    transform: none !important;
    width: 100% !important;
    max-width: 100% !important;
    z-index: 2 !important;
    pointer-events: auto !important;
}

.hero-img-wrapper {
    position: relative !important;
    width: 100% !important;
    display: block !important;
    transform: none !important;
}

.hero-main-img {
    width: 100% !important;
    max-width: 580px !important;
    height: auto !important;
    border-radius: 16px !important;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.12), 0 10px 20px -5px rgba(242, 95, 56, 0.08) !important;
    border: none !important;
    background: transparent !important;
    object-fit: contain !important;
    display: block !important;
    transform: none !important;
    transition: transform 0.3s ease !important;
}

.hero-main-img:hover {
    transform: translateY(-4px) !important;
}

@media (max-width: 992px) {
    .leadvault-grid {
        grid-template-columns: 1fr !important;
        padding: 20px 16px !important;
    }
    .leadvault-hero .hero-title {
        font-size: 2.3rem !important;
    }
}


/* ==========================================================================
   EXACT REPLICA HERO TABLE COMPONENT
   ========================================================================== */
.replica-table-container {
    position: relative;
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 25px 50px -12px rgba(120, 119, 198, 0.25), 0 10px 25px rgba(0, 0, 0, 0.06);
    padding: 16px;
    margin-top: 10px;
    margin-bottom: 25px;
    width: 100%;
}

.top-sheets-badge {
    position: absolute;
    top: -22px;
    right: 20px;
    z-index: 10;
    background: #ffffff;
    border-radius: 12px;
    padding: 4px;
    box-shadow: 0 10px 25px rgba(15, 157, 88, 0.25), 0 4px 10px rgba(0, 0, 0, 0.08);
}

.replica-table-scroll {
    overflow-x: auto;
    width: 100%;
    border-radius: 12px;
}

.hero-replica-table {
    width: 100%;
    border-collapse: collapse;
    font-family: var(--font-sans);
    font-size: 0.74rem;
    text-align: left;
    white-space: nowrap;
}

.hero-replica-table th {
    background: #f8fafc;
    color: #1e293b;
    font-weight: 700;
    padding: 10px 12px;
    border-bottom: 1px solid #e2e8f0;
    font-size: 0.75rem;
}

.hero-replica-table td {
    padding: 9px 12px;
    border-bottom: 1px solid #f1f5f9;
    color: #334155;
    vertical-align: middle;
}

.hero-replica-table tr:hover td {
    background: #f8fafc;
}

.col-bname {
    color: #0f172a !important;
    font-weight: 700;
}

.cat-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #6b21a8;
    background: rgba(30, 94, 255, 0.08);
    padding: 3px 8px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.71rem;
}

.col-email, .col-web {
    color: #475569;
}

.col-soc {
    display: table-cell;
    vertical-align: middle;
}

.col-soc svg {
    display: inline-block;
    vertical-align: middle;
    margin-right: 5px;
}

.col-soc span {
    display: inline-block;
    vertical-align: middle;
    color: #334155;
    font-size: 0.72rem;
}

.faded-row {
    opacity: 0.45;
    filter: blur(0.4px);
}

.faded-row-more {
    opacity: 0.2;
    filter: blur(1.2px);
}

/* BOTTOM DUAL BADGE */
.bottom-dual-pill {
    position: absolute;
    bottom: -22px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    background: #ffffff;
    border-radius: 30px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    padding: 6px 18px;
    gap: 16px;
}

.pill-left, .pill-right {
    display: flex;
    align-items: center;
    gap: 8px;
}

.pill-divider {
    width: 1px;
    height: 24px;
    background: #e2e8f0;
}

.pill-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.pill-text strong {
    font-size: 0.76rem;
    color: #0f172a;
    font-weight: 800;
}

.pill-text span {
    font-size: 0.68rem;
    color: #64748b;
}

@media (max-width: 992px) {
    .replica-table-container {
        margin-top: 30px;
    }
}


/* 2-LINE DATA TABLE CELL FORMATTING */
.compact-2line-table {
    table-layout: fixed !important;
    width: 100% !important;
}

.compact-2line-table th, .compact-2line-table td {
    padding: 6px 8px !important;
    font-size: 0.67rem !important;
    line-height: 1.2 !important;
}

.two-line-cell {
    display: inline-flex !important;
    flex-direction: column !important;
    vertical-align: middle !important;
    line-height: 1.15 !important;
}

.two-line-cell span {
    font-size: 0.62rem !important;
    color: #64748b !important;

}

.two-line-cell strong {
    font-size: 0.66rem !important;
    color: #0f172a !important;
    font-weight: 700 !important;
}

.col-soc svg {
    margin-right: 4px !important;
    vertical-align: middle !important;
}


/* ENFORCE POPPINS FONT ON ENTIRE HEADLINE AND CHILD SPANS */
.poppins-title, .hero-title, .hero-title *, .typewriter-text, .typewriter-container {
    font-family: 'Poppins', sans-serif !important;
}


/* MOCK TABLE IMAGE STYLING (NO SCROLLBARS, CLEAN ELLIPSIS) */
.mock-image-card {
    overflow: hidden !important;
    max-width: 620px !important;
    width: 100% !important;
    border-radius: 18px !important;
}

.no-scroll {
    overflow: hidden !important;
    overflow-x: hidden !important;
    overflow-y: hidden !important;
}

.no-scroll::-webkit-scrollbar {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
}

.mock-table {
    width: 100% !important;
    table-layout: fixed !important;
    border-collapse: collapse !important;
}

.mock-table th {
    background: #f8fafc !important;
    color: #0f172a !important;
    font-weight: 700 !important;
    padding: 8px 6px !important;
    font-size: 0.68rem !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
}

.mock-table td {
    padding: 8px 6px !important;
    font-size: 0.67rem !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
    vertical-align: middle !important;
}

.mock-table td span {
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
    display: inline-block !important;
    max-width: calc(100% - 18px) !important;
    vertical-align: middle !important;
}

/* Explicit percentage column widths totaling 100% */
.mock-table th:nth-child(1), .mock-table td:nth-child(1) { width: 22% !important; }
.mock-table th:nth-child(2), .mock-table td:nth-child(2) { width: 20% !important; }
.mock-table th:nth-child(3), .mock-table td:nth-child(3) { width: 16% !important; }
.mock-table th:nth-child(4), .mock-table td:nth-child(4) { width: 10.5% !important; }
.mock-table th:nth-child(5), .mock-table td:nth-child(5) { width: 10.5% !important; }
.mock-table th:nth-child(6), .mock-table td:nth-child(6) { width: 10.5% !important; }
.mock-table th:nth-child(7), .mock-table td:nth-child(7) { width: 10.5% !important; }


/* SLIGHTLY REDUCED BOLDNESS & INCREASED LINE SPACING FOR HERO TITLE */
.leadvault-hero .hero-title, .poppins-title, .hero-title * {
    font-family: 'Poppins', sans-serif !important;
    font-weight: 700 !important;
}

.leadvault-hero .hero-title {
    font-size: 3.1rem !important;
    line-height: 1.34 !important;
    color: #0f172a !important;
    margin-bottom: 24px !important;
    letter-spacing: -0.015em !important;
}

.text-orange {
    color: #f25f38 !important;
    font-weight: 700 !important;
}

.leadvault-hero .text-blue-highlight {
    color: #1E5EFF !important;
    font-weight: 700 !important;
}


/* ENLARGED TABLE COMPONENT (NO BOTTOM DUAL PILL) */
.mock-image-card {
    overflow: hidden !important;
    max-width: 740px !important;
    width: 100% !important;
    border-radius: 20px !important;
    box-shadow: 0 25px 60px -12px rgba(120, 119, 198, 0.22), 0 10px 25px rgba(0, 0, 0, 0.08) !important;
}

.bottom-dual-pill {
    display: none !important;
}

.mock-table th {
    background: #f8fafc !important;
    color: #0f172a !important;
    font-weight: 700 !important;
    padding: 11px 9px !important;
    font-size: 0.75rem !important;
}

.mock-table td {
    padding: 11px 9px !important;
    font-size: 0.74rem !important;
}


/* MACBOOK WINDOW HEADER FRAME STYLING */
.macbook-window-frame {
    padding: 0 !important;
    border-radius: 18px !important;
    overflow: hidden !important;
    background: #ffffff !important;
}

.spreadsheet-window-header {
    background: #f8fafc !important;
    border-bottom: 1px solid #e2e8f0 !important;
    padding: 10px 16px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    position: relative !important;
    z-index: 5 !important;
}

.window-controls {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
}

.control-dot {
    width: 11px !important;
    height: 11px !important;
    border-radius: 50% !important;
    display: inline-block !important;
}

.dot-close { background: #ff5f56 !important; }
.dot-minimize { background: #ffbd2e !important; }
.dot-expand { background: #27c93f !important; }

.window-title-bar {
    position: absolute !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    font-size: 0.72rem !important;
    font-weight: 600 !important;
    color: #64748b !important;
    letter-spacing: 0.02em !important;
}


/* ==========================================================================
   SIGNIFICANTLY ENLARGED MOCK TABLE & HERO GRID LAYOUT
   ========================================================================== */
.leadvault-grid {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 40px !important;
    max-width: 1400px !important;
    margin: 0 auto !important;
    padding: 40px 32px !important;
    position: relative !important;
    width: 100% !important;
}

.hero-content {
    flex: 1 1 520px !important;
    max-width: 560px !important;
}

.hero-visual.leadvault-visual {
    flex: 1.35 1 720px !important;
    max-width: 880px !important;
    width: 100% !important;
}

.mock-image-card, .replica-table-container {
    overflow: hidden !important;
    max-width: 880px !important;
    width: 100% !important;
    border-radius: 20px !important;
    box-shadow: 0 25px 60px -10px rgba(120, 119, 198, 0.25), 0 10px 30px rgba(0, 0, 0, 0.08) !important;
}

.spreadsheet-window-header {
    padding: 12px 18px !important;
}

.window-title-bar {
    font-size: 0.8rem !important;
}

.mock-table {
    width: 100% !important;
    table-layout: fixed !important;
    border-collapse: collapse !important;
}

.mock-table th {
    background: #f8fafc !important;
    color: #0f172a !important;
    font-weight: 700 !important;
    padding: 13px 10px !important;
    font-size: 0.82rem !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
}

.mock-table td {
    padding: 12px 10px !important;
    font-size: 0.8rem !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
    vertical-align: middle !important;
}

.mock-table td span {
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
    display: inline-block !important;
    max-width: calc(100% - 18px) !important;
    vertical-align: middle !important;
    font-size: 0.78rem !important;
}

/* Explicit percentage column widths totaling 100% */
.mock-table th:nth-child(1), .mock-table td:nth-child(1) { width: 22% !important; }
.mock-table th:nth-child(2), .mock-table td:nth-child(2) { width: 24% !important; }
.mock-table th:nth-child(3), .mock-table td:nth-child(3) { width: 17% !important; }
.mock-table th:nth-child(4), .mock-table td:nth-child(4) { width: 9.25% !important; }
.mock-table th:nth-child(5), .mock-table td:nth-child(5) { width: 9.25% !important; }
.mock-table th:nth-child(6), .mock-table td:nth-child(6) { width: 9.25% !important; }
.mock-table th:nth-child(7), .mock-table td:nth-child(7) { width: 9.25% !important; }


/* POSITION GOOGLE SHEETS LOGO CARD FLOATING OUTSIDE THE TABLE */
.mock-image-card, .replica-table-container {
    overflow: visible !important;
    position: relative !important;
}

.top-sheets-badge {
    position: absolute !important;
    top: -28px !important;
    right: -24px !important;
    z-index: 30 !important;
    background: #ffffff !important;
    border-radius: 16px !important;
    padding: 10px !important;
    box-shadow: 0 16px 35px rgba(15, 157, 88, 0.32), 0 6px 15px rgba(0, 0, 0, 0.1) !important;
    border: 1px solid rgba(226, 232, 240, 0.8) !important;
}

.top-sheets-badge svg {
    width: 46px !important;
    height: 46px !important;
    display: block !important;
}


/* SLIGHTLY REDUCED TABLE SIZE (790PX) FOR PERFECT 3-LINE HEADLINE FLOW */
.leadvault-grid {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 36px !important;
    max-width: 1380px !important;
    margin: 0 auto !important;
    padding: 40px 24px !important;
    width: 100% !important;
}

.hero-content {
    flex: 1 1 560px !important;
    max-width: 600px !important;
}

.hero-visual.leadvault-visual {
    flex: 1.15 1 760px !important;
    max-width: 790px !important;
    width: 100% !important;
}

.mock-image-card, .replica-table-container {
    overflow: visible !important;
    max-width: 790px !important;
    width: 100% !important;
    border-radius: 18px !important;
    box-shadow: 0 25px 50px -10px rgba(120, 119, 198, 0.22), 0 10px 25px rgba(0, 0, 0, 0.07) !important;
}

.mock-table th {
    background: #f8fafc !important;
    color: #0f172a !important;
    font-weight: 700 !important;
    padding: 11px 8px !important;
    font-size: 0.77rem !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
}

.mock-table td {
    padding: 10px 8px !important;
    font-size: 0.75rem !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
    vertical-align: middle !important;
}


/* ALIGN NAVIGATION HEADER WITH HERO SECTION SIDE PADDING */
.site-header {
    width: 100% !important;
    background: transparent !important;
    position: relative !important;
    z-index: 100 !important;
}

.header-container {
    max-width: 1380px !important;
    margin: 0 auto !important;
    padding: 18px 24px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    box-sizing: border-box !important;
}

.leadvault-grid {
    max-width: 1380px !important;
    margin: 0 auto !important;
    padding: 30px 24px 50px 24px !important;
    box-sizing: border-box !important;
}


/* REDUCED TABLE CONTAINER SIZE (720PX) */
.hero-visual.leadvault-visual {
    flex: 1.1 1 700px !important;
    max-width: 720px !important;
    width: 100% !important;
}

.mock-image-card, .replica-table-container {
    overflow: visible !important;
    max-width: 720px !important;
    width: 100% !important;
    border-radius: 18px !important;
    box-shadow: 0 20px 45px -10px rgba(120, 119, 198, 0.22), 0 10px 25px rgba(0, 0, 0, 0.07) !important;
}

.mock-table th {
    background: #f8fafc !important;
    color: #0f172a !important;
    font-weight: 700 !important;
    padding: 10px 7px !important;
    font-size: 0.74rem !important;
}

.mock-table td {
    padding: 9px 7px !important;
    font-size: 0.72rem !important;
}


/* SOFT RIGHT-TO-LEFT LIGHT BLUE BACKGROUND TINT */
.leadvault-hero {
    position: relative;
    background: linear-gradient(to left, 
        rgba(30, 94, 255, 0.09) 0%, 
        rgba(219, 234, 254, 0.25) 45%, 
        rgba(255, 255, 255, 0.96) 85%, 
        #ffffff 100%) !important;
    overflow: hidden;
    padding-bottom: 50px;
}

.leadvault-hero::after {
    display: none !important;
}


/* DARK BLACK COLOR FOR USUAL PRICE & STRIKETHROUGH */
.pricing-anchor {
    font-size: 0.88rem !important;
    color: #0f172a !important;
    margin-bottom: 10px !important;
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    font-weight: 600 !important;
}

.pricing-anchor span {
    color: #0f172a !important;
}

.pricing-anchor s {
    color: #0f172a !important;
    text-decoration: line-through !important;
    font-weight: 700 !important;
    font-size: 0.95rem !important;
}

/* VIBRANT COLORFUL FEATURE ILLUSTRATIONS */
.feature-highlights-row {
    display: flex !important;
    align-items: center !important;
    gap: 24px !important;
    margin-top: 22px !important;
    margin-bottom: 22px !important;
}

.feature-item {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
}

.feature-icon-circle {
    width: 42px !important;
    height: 42px !important;
    border-radius: 12px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease !important;
}

.icon-verified {
    background: rgba(52, 211, 153, 0.14) !important;
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.15) !important;
}

.icon-social {
    background: rgba(96, 165, 250, 0.14) !important;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.15) !important;
}

.icon-delivery {
    background: rgba(251, 146, 60, 0.14) !important;
    box-shadow: 0 4px 12px rgba(234, 88, 12, 0.15) !important;
}

.feature-icon-circle:hover {
    transform: translateY(-2px) !important;
}

.feature-text {
    display: flex !important;
    flex-direction: column !important;
    line-height: 1.25 !important;
}

.feature-text strong {
    font-size: 0.84rem !important;
    color: #0f172a !important;
    font-weight: 700 !important;
}

.feature-text span {
    font-size: 0.75rem !important;
    color: #64748b !important;
}


/* FORCE WHITE TEXT COLOR ON DISCOUNT TAG */
.pricing-anchor .discount-tag, .discount-tag {
    background: #DC2626 !important;
    color: #ffffff !important;
    font-size: 0.72rem !important;
    font-weight: 800 !important;
    padding: 3px 8px !important;
    border-radius: 4px !important;
    letter-spacing: 0.04em !important;
    display: inline-block !important;
}


/* ==========================================================================
   PC DESKTOP LOCKED (MIN-WIDTH: 769PX)
   ========================================================================== */
@media (min-width: 769px) {
    .categories-card {
        display: flex !important;
        background: #ffffff;
        border-radius: 20px;
        border: 1px solid #e2e8f0;
        box-shadow: 0 15px 35px -5px rgba(30, 94, 255, 0.07), 0 5px 15px rgba(0, 0, 0, 0.04);
        padding: 22px 36px;
        align-items: center;
        justify-content: space-between;
    }
    .mobile-categories-wrap {
        display: none !important;
    }
    .whats-inside-macbook-frame {
        position: relative !important;
        background: #ffffff !important;
        border-radius: 24px !important;
        border: 1px solid #e2e8f0 !important;
        box-shadow: 0 25px 60px rgba(30, 94, 255, 0.08), 0 10px 25px rgba(0, 0, 0, 0.05) !important;
        overflow: visible !important;
    }
    .macbook-window-bar {
        background: #f1f5f9 !important;
        padding: 14px 22px !important;
        display: flex !important;
        align-items: center !important;
        gap: 16px !important;
        border-bottom: 1px solid #e2e8f0 !important;
        border-top-left-radius: 24px !important;
        border-top-right-radius: 24px !important;
    }
    .macbook-img-container {
        padding: 0 !important;
        overflow: hidden !important;
        border-bottom-left-radius: 24px !important;
        border-bottom-right-radius: 24px !important;
    }
    .whats-inside-full-img {
        width: 100% !important;
        height: auto !important;
        display: block !important;
        object-fit: contain !important;
        border-bottom-left-radius: 24px !important;
        border-bottom-right-radius: 24px !important;
    }
    .floating-excel-badge {
        display: flex !important;
        position: absolute !important;
        bottom: -24px !important;
        right: 36px !important;
        background: #ffffff !important;
        border: 1px solid #e2e8f0 !important;
        border-radius: 16px !important;
        padding: 12px 20px !important;
        align-items: center !important;
        gap: 12px !important;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15) !important;
        z-index: 25 !important;
    }
}

/* ==========================================================================
   MOBILE PHONE CLEAN RULES (MAX-WIDTH: 768PX)
   ========================================================================== */
@media (max-width: 768px) {
    /* Hide desktop banner card, show clean 3-at-2 mobile categories */
    .categories-card {
        display: none !important;
    }
    .mobile-categories-wrap {
        display: block !important;
        width: 100% !important;
    }
    .categories-banner-section {
        padding: 24px 16px 36px 16px !important;
        background: #ffffff !important;
    }
    .categories-header-centered {
        margin-bottom: 20px !important;
        text-align: center !important;
    }
    .categories-main-title {
        font-family: 'Poppins', sans-serif !important;
        font-size: 34px !important;
        font-weight: 800 !important;
        color: #0f172a !important;
        line-height: 1.22 !important;
        margin: 0 0 8px 0 !important;
        text-align: center !important;
    }
    .categories-main-title .text-orange { color: #f25f38 !important; }
    .categories-main-title .text-blue-highlight { color: #1e5eff !important; }
    .categories-subline {
        font-family: 'Inter', sans-serif !important;
        font-size: 15px !important;
        color: #64748b !important;
        margin: 0 !important;
        text-align: center !important;
        padding: 0 8px !important;
    }
    .categories-illustrations-grid {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 16px !important;
        width: 100% !important;
    }
    .categories-row-top {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 12px !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
    }
    .categories-row-bottom {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
        width: 100% !important;
        max-width: 260px !important;
        margin: 0 auto !important;
    }
    .category-illus-item {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        gap: 6px !important;
        padding: 8px 4px !important;
    }
    .category-illus-icon {
        width: 48px !important;
        height: 48px !important;
        border-radius: 50% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        margin: 0 auto 4px auto !important;
    }
    .icon-dental { background: rgba(37, 99, 235, 0.1) !important; }
    .icon-chiro { background: rgba(5, 150, 105, 0.1) !important; }
    .icon-law { background: rgba(234, 88, 12, 0.1) !important; }
    .icon-spa { background: rgba(147, 51, 234, 0.1) !important; }
    .icon-roofing { background: rgba(2, 132, 199, 0.1) !important; }
    .category-illus-name {
        font-family: 'Inter', sans-serif !important;
        font-size: 13.5px !important;
        font-weight: 700 !important;
        color: #1e293b !important;
        line-height: 1.25 !important;
        text-align: center !important;
    }

    /* What's Inside: 1 Single Sharp Rectangle on Mobile, No Floating Badge */
    .whats-inside-macbook-frame {
        border-radius: 0 !important;
        border: 1px solid #cbd5e1 !important;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08) !important;
        overflow: hidden !important;
    }
    .macbook-window-bar {
        border-radius: 0 !important;
        padding: 10px 14px !important;
        border-bottom: 1px solid #cbd5e1 !important;
    }
    .macbook-img-container {
        border-radius: 0 !important;
    }
    .whats-inside-full-img {
        border-radius: 0 !important;
    }
    .floating-excel-badge {
        display: none !important;
    }
}
/* ==========================================================================
   ORIGINAL PC DESKTOP SECTION 2: 5 HIGH-VALUE CATEGORIES BANNER CARD
   ========================================================================== */
.categories-banner-section {
    padding: 30px 24px 60px 24px;
    background: #ffffff;
}

.categories-container {
    max-width: 1380px;
    margin: 0 auto;
}

.categories-card {
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 15px 35px -5px rgba(30, 94, 255, 0.07), 0 5px 15px rgba(0, 0, 0, 0.04);
    padding: 22px 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.categories-title-block h2 {
    font-family: 'Poppins', sans-serif !important;
    font-size: 1.15rem !important;
    font-weight: 700 !important;
    color: #0f172a !important;
    line-height: 1.25 !important;
    margin: 0 !important;
    white-space: nowrap;
}

.categories-divider {
    width: 1px;
    height: 44px;
    background: #e2e8f0;
    margin: 0 32px;
    flex-shrink: 0;
}

.categories-list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 20px;
}

.category-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    flex: 1;
}

.cat-icon-wrap {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(30, 94, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4px;
    transition: transform 0.3s ease, background 0.3s ease;
}

.category-item:hover .cat-icon-wrap {
    background: rgba(30, 94, 255, 0.15);
    transform: translateY(-2px);
}

.cat-name {
    font-family: 'Inter', sans-serif !important;
    font-size: 0.82rem !important;
    font-weight: 600 !important;
    color: #1e293b !important;
    line-height: 1.25 !important;
    text-align: center !important;
}

/* ==========================================================================
   ORIGINAL PC DESKTOP SECTION 3.5: WHAT'S INSIDE FULL MACBOOK FRAME & BADGE
   ========================================================================== */
.section-whats-inside {
    padding: 70px 24px 80px 24px;
    background: #ffffff;
}

.whats-inside-container {
    max-width: 1200px !important;
    margin: 0 auto !important;
}

.whats-inside-header {
    text-align: center !important;
    max-width: 840px !important;
    margin: 0 auto 42px auto !important;
}

.whats-inside-title {
    font-family: 'Poppins', sans-serif !important;
    font-size: 2.5rem !important;
    font-weight: 800 !important;
    color: #0f172a !important;
    margin-bottom: 14px !important;
}

.whats-inside-subheadline {
    font-family: 'Inter', sans-serif !important;
    font-size: 1.1rem !important;
    color: #475569 !important;
    line-height: 1.65 !important;
    margin: 0 !important;
}

.whats-inside-subheadline strong {
    color: #0f172a !important;
}

.whats-inside-macbook-frame {
    position: relative !important;
    background: #ffffff !important;
    border-radius: 24px !important;
    border: 1px solid #e2e8f0 !important;
    box-shadow: 0 25px 60px rgba(30, 94, 255, 0.08), 0 10px 25px rgba(0, 0, 0, 0.05) !important;
    overflow: visible !important;
}

.macbook-window-bar {
    background: #f1f5f9 !important;
    padding: 14px 22px !important;
    display: flex !important;
    align-items: center !important;
    gap: 16px !important;
    border-bottom: 1px solid #e2e8f0 !important;
    border-top-left-radius: 24px !important;
    border-top-right-radius: 24px !important;
}

.window-controls {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
}

.control-dot {
    width: 12px !important;
    height: 12px !important;
    border-radius: 50% !important;
    display: inline-block !important;
}

.dot-close { background-color: #ff5f56 !important; }
.dot-minimize { background-color: #ffbd2e !important; }
.dot-expand { background-color: #27c93f !important; }

.window-title-bar {
    font-family: 'Inter', monospace, sans-serif !important;
    font-size: 0.82rem !important;
    color: #64748b !important;
    font-weight: 500 !important;
}

.macbook-img-container {
    padding: 0 !important;
    overflow: hidden !important;
    border-bottom-left-radius: 24px !important;
    border-bottom-right-radius: 24px !important;
}

.whats-inside-full-img {
    width: 100% !important;
    height: auto !important;
    display: block !important;
    object-fit: contain !important;
    border-bottom-left-radius: 24px !important;
    border-bottom-right-radius: 24px !important;
}

.floating-excel-badge {
    position: absolute !important;
    bottom: 24px !important;
    right: 28px !important;
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 16px !important;
    padding: 10px 18px !important;
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12) !important;
    z-index: 10 !important;
}

.badge-text-wrap {
    display: flex !important;
    flex-direction: column !important;
}

.badge-sub {
    font-size: 0.72rem !important;
    color: #64748b !important;
    font-weight: 500 !important;
}

.badge-main {
    font-size: 0.95rem !important;
    color: #0f172a !important;
    font-weight: 700 !important;
}

/* ==========================================================================
   MOBILE ONLY RECTANGULAR WHAT'S INSIDE STYLING
   ========================================================================== */
@media (max-width: 768px) {
    .whats-inside-mobile-rect {
        background: #ffffff !important;
        border: 1px solid #cbd5e1 !important;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08) !important;
        border-radius: 0 !important;
    }
    .mobile-window-bar {
        background: #f1f5f9 !important;
        padding: 10px 14px !important;
        display: flex !important;
        align-items: center !important;
        gap: 12px !important;
        border-bottom: 1px solid #cbd5e1 !important;
    }
    .mobile-img-wrap img {
        width: 100% !important;
        height: auto !important;
        display: block !important;
        border-radius: 0 !important;
    }
}

/* ==========================================================================
   SECTION 3: 3 EASY STEPS PROCESS FLOW & PRICING CARD
   ========================================================================== */
.section-process-pricing {
    padding: 70px 24px 90px 24px;
    background: #ffffff;
}

.process-pricing-container {
    max-width: 1380px;
    margin: 0 auto;
}

.process-pricing-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

/* LEFT COLUMN: 3 EASY STEPS */
.process-left-col {
    flex: 1.2;
}

.process-header {
    margin-bottom: 44px;
}

.process-main-title {
    font-family: 'Poppins', sans-serif !important;
    font-size: 2.3rem !important;
    font-weight: 800 !important;
    color: #0f172a !important;
    margin-bottom: 8px !important;
}

.process-main-title .blue-highlight {
    color: #1E5EFF !important;
}

.process-subtitle {
    font-size: 1.05rem !important;
    color: #64748b !important;
    font-weight: 500 !important;
}

.steps-flow {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    max-width: 200px;
}

.big-circle-illustration {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1E5EFF, #1D4ED8);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    box-shadow: 0 10px 25px rgba(79, 70, 229, 0.35);
    transition: transform 0.2s ease;
}

.step-item:hover .big-circle-illustration {
    transform: translateY(-4px);
}

.step-title {
    font-family: 'Poppins', sans-serif !important;
    font-size: 1.05rem !important;
    font-weight: 700 !important;
    color: #0f172a !important;
    margin-bottom: 6px !important;
}

.step-desc {
    font-size: 0.84rem !important;
    color: #64748b !important;
    line-height: 1.35 !important;
}

.step-arrow {
    margin-top: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* RIGHT COLUMN: PRICING CARD */
.pricing-right-col {
    flex: 0.8;
    max-width: 440px;
    width: 100%;
}

.pricing-card-box {
    background: #ffffff;
    border-radius: 24px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 25px 60px -15px rgba(30, 94, 255, 0.15), 0 10px 30px rgba(0, 0, 0, 0.05);
    padding: 36px 32px;
    text-align: center;
}

.pricing-badge-pill {
    display: inline-block;
    background: rgba(30, 94, 255, 0.1);
    color: #1E5EFF;
    font-size: 0.72rem;
    font-weight: 800;
    padding: 5px 14px;
    border-radius: 20px;
    letter-spacing: 0.05em;
    margin-bottom: 18px;
}

.pricing-amount {
    font-family: 'Poppins', sans-serif !important;
    font-size: 3.6rem !important;
    font-weight: 800 !important;
    color: #1E5EFF !important;
    line-height: 1 !important;
    margin-bottom: 24px !important;
}

.pricing-features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 28px 0;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pricing-features-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: #334155;
    font-weight: 500;
}

.check-icon {
    flex-shrink: 0;
}

.btn-pricing-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    background: #0f172a;
    color: #ffffff !important;
    font-family: 'Poppins', sans-serif !important;
    font-size: 0.95rem !important;
    font-weight: 700 !important;
    padding: 15px 24px;
    border-radius: 12px;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease;
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.18);
}

.btn-pricing-cta:hover {
    background: #1e293b;
    transform: translateY(-2px);
}

@media (max-width: 992px) {
    .process-pricing-grid {
        flex-direction: column;
        gap: 40px;
    }
    .pricing-right-col {
        max-width: 100%;
    }
    .steps-flow {
        flex-direction: column;
        align-items: center;
    }
    .step-arrow {
        transform: rotate(90deg);
        margin: 10px 0;
    }
}

/* CENTER ALIGN SECTION 3 PROCESS HEADER */
.process-header {
    text-align: center !important;
    margin-bottom: 44px !important;
}


/* 2X ENLARGED CIRCLE ILLUSTRATIONS & NO ANIMATIONS */
.big-circle-illustration {
    width: 115px !important;
    height: 115px !important;
    border-radius: 50% !important;
    background: linear-gradient(135deg, #1E5EFF, #1D4ED8) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-bottom: 20px !important;
    box-shadow: 0 14px 30px rgba(79, 70, 229, 0.3) !important;
    transform: none !important;
    transition: none !important;
    animation: none !important;
}

.step-item, .step-item:hover, .step-item:hover .big-circle-illustration, .big-circle-illustration:hover {
    transform: none !important;
    transition: none !important;
    animation: none !important;
}


/* ENFORCE BRAND ELECTRIC BLUE (#1E5EFF) ACROSS ALL ACCENTS */
.purple-highlight, .blue-highlight {
    color: #1E5EFF !important;
}

.big-circle-illustration {
    background: linear-gradient(135deg, #3B82F6, #1E5EFF) !important;
    box-shadow: 0 14px 30px rgba(30, 94, 255, 0.3) !important;
}

.pricing-badge-pill {
    background: rgba(30, 94, 255, 0.1) !important;
    color: #1E5EFF !important;
}

.pricing-amount {
    color: #1E5EFF !important;
}


/* ORANGE HIGHLIGHT COLOR FOR INSTANT */
.process-main-title .text-orange, .text-orange {
    color: #f25f38 !important;
}


/* GREEN TICK BOXES ILLUSTRATIONS FOR PRICING CHECKLIST */
.check-box-icon {
    width: 20px !important;
    height: 20px !important;
    flex-shrink: 0 !important;
    box-shadow: 0 3px 8px rgba(16, 185, 129, 0.25) !important;
}

.pricing-features-list li {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    font-size: 0.92rem !important;
    color: #1e293b !important;
    font-weight: 600 !important;
}


/* UNIFIED BODY TYPOGRAPHY SYSTEM (STANDARDIZED TO 1.05REM) */
p, .hero-subtitle, .process-subtitle, .step-desc, body {
    font-size: 1.05rem !important;
    line-height: 1.55 !important;
    color: #475569 !important;
}

.process-subtitle {
    font-size: 1.05rem !important;
    color: #64748b !important;
    font-weight: 500 !important;
}

.step-desc {
    font-size: 1.02rem !important;
    color: #64748b !important;
    line-height: 1.45 !important;
    max-width: 220px !important;
    margin: 0 auto !important;
}


/* BIGGER BOLDER ARROWS WITH FADING TAIL ENDS */
.step-arrow {
    margin-top: 44px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
}

.step-arrow svg {
    width: 48px !important;
    height: 28px !important;
    display: block !important;
}


/* ==========================================================================
   SECTION 4: TESTIMONIALS & SECTION 5: DARK CTA & STATS BANNER
   ========================================================================== */
.section-testimonials {
    padding: 70px 24px 90px 24px;
    background: #ffffff;
}

.testimonials-container {
    max-width: 1380px;
    margin: 0 auto;
    text-align: center;
}

.testimonials-title {
    font-family: 'Poppins', sans-serif !important;
    font-size: 2.2rem !important;
    font-weight: 800 !important;
    color: #0f172a !important;
    margin-bottom: 44px !important;
}

.testimonials-grid {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 28px;
}

.testimonial-card {
    flex: 1;
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    padding: 32px 28px;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(30, 94, 255, 0.1);
}

.star-rating {
    font-size: 1.1rem;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.quote-headline {
    font-family: 'Poppins', sans-serif !important;
    font-size: 1.05rem !important;
    font-weight: 700 !important;
    color: #0f172a !important;
    margin-bottom: 10px !important;
}

.quote-body {
    font-size: 0.95rem !important;
    color: #475569 !important;
    line-height: 1.5 !important;
    margin-bottom: 20px !important;
    flex-grow: 1;
}

.quote-author {
    font-size: 0.88rem !important;
    color: #64748b !important;
    font-weight: 600 !important;
}

/* SECTION 5: DARK CTA & STATS BANNER */
.section-dark-cta {
    background: #0b0f19;
    color: #ffffff;
    padding: 70px 24px 50px 24px;
}

.dark-cta-container {
    max-width: 1380px;
    margin: 0 auto;
}

.cta-banner-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 60px;
}

.cta-left-text h2 {
    font-family: 'Poppins', sans-serif !important;
    font-size: 2.2rem !important;
    font-weight: 800 !important;
    color: #ffffff !important;
    margin-bottom: 10px !important;
}

.cta-left-text p {
    font-size: 1.05rem !important;
    color: #94a3b8 !important;
    margin: 0 !important;
}

.cta-right-btn-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.btn-blue-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #1E5EFF;
    color: #ffffff !important;
    font-family: 'Poppins', sans-serif !important;
    font-size: 1.05rem !important;
    font-weight: 700 !important;
    padding: 16px 32px;
    border-radius: 14px;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(30, 94, 255, 0.4);
    transition: background 0.2s ease, transform 0.2s ease;
}

.btn-blue-cta:hover {
    background: #2563EB;
    transform: translateY(-2px);
}

.cta-subtext {
    font-size: 0.82rem;
    color: #64748b;
}

/* STATS BAR */
.stats-bar-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 40px;
}

.stat-box {
    display: flex;
    align-items: center;
    gap: 14px;
}

.stat-content {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: 'Poppins', sans-serif !important;
    font-size: 1.25rem !important;
    font-weight: 800 !important;
    color: #ffffff !important;
    line-height: 1.2 !important;
}

.stat-label {
    font-size: 0.82rem !important;
    color: #94a3b8 !important;
}

.stat-divider {
    width: 1px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 992px) {
    .testimonials-grid {
        flex-direction: column;
    }
    .cta-banner-row {
        flex-direction: column;
        text-align: center;
    }
    .stats-bar-row {
        flex-wrap: wrap;
        gap: 20px;
    }
    .stat-divider {
        display: none;
    }
}


/* SOFT TESTIMONIALS & DECORATIVE SIDE ELEMENTS */
.section-testimonials {
    position: relative !important;
    overflow: hidden !important;
    padding: 85px 24px 105px 24px !important;
    background: #ffffff !important;
}

.decor-shape {
    position: absolute !important;
    pointer-events: none !important;
    z-index: 1 !important;
}

.shape-left-dots { top: 22%; left: 3%; }
.shape-left-orange { top: 48%; left: 6%; }
.shape-left-cube { bottom: 4%; left: 1%; }

.shape-right-triangle { top: 20%; right: 4%; }
.shape-right-zigzag { top: 48%; right: 6%; }
.shape-right-frame { bottom: 3%; right: 1%; }

.testimonials-container {
    position: relative !important;
    z-index: 5 !important;
    max-width: 1380px !important;
    margin: 0 auto !important;
    text-align: center !important;
}

.testimonials-title {
    font-family: 'Poppins', sans-serif !important;
    font-size: 2.2rem !important;
    font-weight: 800 !important;
    color: #0f172a !important;
    margin-bottom: 48px !important;
}

.testimonials-grid {
    display: flex !important;
    align-items: stretch !important;
    justify-content: space-between !important;
    gap: 28px !important;
}

.testimonial-card {
    flex: 1 !important;
    background: #ffffff !important;
    border-radius: 22px !important;
    border: 1px solid rgba(226, 232, 240, 0.7) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03) !important;
    padding: 34px 28px !important;
    text-align: left !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease !important;
}

.testimonial-card:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 18px 45px rgba(30, 94, 255, 0.08) !important;
}


/* UNIFIED TYPOGRAPHY (POPPINS FOR HEADINGS & INTER FOR BODY) FOR TESTIMONIALS & DARK CTA */
.testimonials-title, .cta-left-text h2, .stat-number {
    font-family: 'Poppins', sans-serif !important;
    letter-spacing: -0.01em !important;
}

.quote-headline {
    font-family: 'Poppins', sans-serif !important;
    font-size: 1.08rem !important;
    font-weight: 700 !important;
    color: #0f172a !important;
    line-height: 1.35 !important;
    margin-bottom: 10px !important;
}

.quote-body {
    font-family: 'Inter', sans-serif !important;
    font-size: 1.05rem !important;
    color: #475569 !important;
    line-height: 1.55 !important;
    margin-bottom: 20px !important;
}

.quote-author {
    font-family: 'Inter', sans-serif !important;
    font-size: 0.88rem !important;
    color: #64748b !important;
    font-weight: 600 !important;
}


/* SECTION 2 ICON CONTAINERS MATCHING SECTION 1 & 3 DESIGN */
.cat-icon-wrap {
    width: 44px !important;
    height: 44px !important;
    border-radius: 12px !important;
    background: rgba(30, 94, 255, 0.1) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
    box-shadow: 0 4px 12px rgba(30, 94, 255, 0.12) !important;
}

.cat-icon-wrap svg {
    width: 26px !important;
    height: 26px !important;
    stroke: #1E5EFF !important;
}


/* UNDO SECTION 2 ICON CONTAINERS - REVERT TO TRANSPARENT OUTLINE ICONS */
.cat-icon-wrap {
    width: auto !important;
    height: auto !important;
    border-radius: 0 !important;
    background: transparent !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
    box-shadow: none !important;
}

.cat-icon-wrap svg {
    width: 32px !important;
    height: 32px !important;
    stroke: #1E5EFF !important;
}


/* UNIFIED DARK FOOTER SECTION WITH PLAYFUL SIDE DECORATIONS */
.site-footer-dark {
    background: #090d16 !important;
    color: #ffffff !important;
    padding: 85px 24px 35px 24px !important;
    position: relative !important;
    overflow: hidden !important;
}

.footer-decor {
    position: absolute !important;
    pointer-events: none !important;
    z-index: 1 !important;
}

.shape-footer-wave-left { top: 32%; left: 2%; }
.shape-footer-zigzag-right { top: 28%; right: 3%; }
.shape-footer-triangle { top: 12%; right: 12%; }
.shape-footer-sparkle { bottom: 25%; left: 7%; }

.dark-footer-container {
    position: relative !important;
    z-index: 5 !important;
    max-width: 1380px !important;
    margin: 0 auto !important;
}

.footer-bottom-row {
    margin-top: 45px !important;
    padding-top: 25px !important;
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
    text-align: center !important;
    font-size: 0.84rem !important;
    color: #64748b !important;
}


/* COMPREHENSIVE MAIN FOOTER BAR */
.site-footer-main {
    background: #050810 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
    padding: 50px 24px 30px 24px !important;
    color: #ffffff !important;
}

.footer-main-container {
    max-width: 1380px !important;
    margin: 0 auto !important;
}

.footer-top-grid {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 30px !important;
    flex-wrap: wrap !important;
    padding-bottom: 35px !important;
}

.footer-brand-block {
    display: flex !important;
    flex-direction: column !important;
    gap: 6px !important;
}

.footer-logo {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
}

.footer-logo .logo-text {
    font-family: 'Poppins', sans-serif !important;
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    letter-spacing: 0.04em !important;
}

.footer-tagline {
    font-size: 0.88rem !important;
    color: #94a3b8 !important;
    margin: 0 !important;
}

.footer-nav-links {
    display: flex !important;
    align-items: center !important;
    gap: 28px !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.footer-nav-links a {
    color: #cbd5e1 !important;
    font-size: 0.92rem !important;
    font-weight: 500 !important;
    text-decoration: none !important;
    transition: color 0.2s ease !important;
}

.footer-nav-links a:hover {
    color: #1E5EFF !important;
}

.footer-social-block {
    display: flex !important;
    align-items: center !important;
    gap: 14px !important;
}

.footer-social-icon {
    width: 40px !important;
    height: 40px !important;
    border-radius: 10px !important;
    background: rgba(255, 255, 255, 0.06) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: background 0.2s ease, transform 0.2s ease !important;
    text-decoration: none !important;
}

.footer-social-icon:hover {
    background: rgba(30, 94, 255, 0.2) !important;
    transform: translateY(-2px) !important;
}

.footer-bottom-copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.06) !important;
    padding-top: 25px !important;
    text-align: center !important;
    font-size: 0.82rem !important;
    color: #64748b !important;
}

@media (max-width: 768px) {
    .footer-top-grid {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }
    .footer-nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}


/* BIG LOGO & HEADLINE STYLING FOR DARK FOOTER */
.footer-logo-wrap {
    margin-bottom: 36px !important;
}

.big-footer-logo {
    height: 52px !important;
    width: auto !important;
    display: block !important;
    filter: brightness(0) invert(1) !important;
}

.cta-left-text h2 {
    font-family: 'Poppins', sans-serif !important;
    font-size: 2.3rem !important;
    font-weight: 800 !important;
    color: #ffffff !important;
    line-height: 1.25 !important;
    margin-bottom: 12px !important;
}


/* FOOTER GRID LAYOUT WITH VERTICAL HOT LINKS & WHITE SUPPORT BOX */
.footer-main-grid {
    display: flex !important;
    align-items: flex-start !important;
    justify-content: space-between !important;
    gap: 40px !important;
    margin-bottom: 40px !important;
}

.footer-col-brand {
    flex: 1.2 !important;
    max-width: 440px !important;
}

.footer-col-brand h2 {
    font-family: 'Poppins', sans-serif !important;
    font-size: 2.1rem !important;
    font-weight: 800 !important;
    color: #ffffff !important;
    line-height: 1.25 !important;
    margin-bottom: 12px !important;
}

.footer-col-brand p {
    font-size: 1rem !important;
    color: #94a3b8 !important;
    margin-bottom: 24px !important;
}

.footer-cta-wrap {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 8px !important;
}

.footer-col-links {
    flex: 0.8 !important;
}

.footer-col-title {
    font-family: 'Poppins', sans-serif !important;
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    margin-bottom: 20px !important;
}

.vertical-hot-links {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
}

.vertical-hot-links a {
    color: #94a3b8 !important;
    text-decoration: none !important;
    font-size: 0.95rem !important;
    font-weight: 500 !important;
    transition: color 0.2s ease, transform 0.2s ease !important;
    display: inline-block !important;
}

.vertical-hot-links a:hover {
    color: #ffffff !important;
    transform: translateX(4px) !important;
}

/* WHITE SUPPORT BOX */
.footer-col-support {
    flex: 1 !important;
    max-width: 360px !important;
}

.white-support-box {
    background: #ffffff !important;
    border-radius: 20px !important;
    padding: 28px 24px !important;
    color: #0f172a !important;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25) !important;
}

.support-box-header {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    margin-bottom: 12px !important;
}

.support-box-header h4 {
    font-family: 'Poppins', sans-serif !important;
    font-size: 1.05rem !important;
    font-weight: 700 !important;
    color: #0f172a !important;
    margin: 0 !important;
}

.white-support-box p {
    font-size: 0.88rem !important;
    color: #475569 !important;
    line-height: 1.5 !important;
    margin-bottom: 16px !important;
}

.support-email-link {
    display: inline-block !important;
    background: rgba(30, 94, 255, 0.1) !important;
    color: #1E5EFF !important;
    font-family: 'Poppins', sans-serif !important;
    font-weight: 700 !important;
    font-size: 0.9rem !important;
    padding: 8px 14px !important;
    border-radius: 8px !important;
    text-decoration: none !important;
    transition: background 0.2s ease !important;
}

.support-email-link:hover {
    background: rgba(30, 94, 255, 0.2) !important;
}


/* EMAIL & IG ICON BUTTONS BELOW WHITE SUPPORT BOX */
.footer-social-icons-row {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    margin-top: 16px !important;
}

.social-icon-btn {
    width: 42px !important;
    height: 42px !important;
    border-radius: 12px !important;
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: background 0.2s ease, transform 0.2s ease !important;
}

.social-icon-btn:hover {
    background: rgba(255, 255, 255, 0.18) !important;
    transform: translateY(-2px) !important;
}


/* DELIVERY & SUPPORT NOTICE CALLOUT BOX */
.delivery-support-notice {
    background: #f8fafc !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 14px !important;
    padding: 16px 18px !important;
    margin-top: 22px !important;
    text-align: left !important;
}

.notice-header {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    margin-bottom: 8px !important;
}

.notice-header strong {
    font-family: 'Poppins', sans-serif !important;
    font-size: 0.85rem !important;
    font-weight: 700 !important;
    color: #0f172a !important;
}

.delivery-support-notice p {
    font-size: 0.82rem !important;
    color: #475569 !important;
    line-height: 1.5 !important;
    margin: 0 !important;
}

.delivery-support-notice strong {
    color: #0f172a !important;
}


/* BOLD ORANGE INSTANT DELIVERY & SUPPORT NOTICE CALLOUT BOX (BEFORE GREEN BOXES) */
.delivery-support-notice.orange-notice {
    background: rgba(242, 95, 56, 0.06) !important;
    border: 1.5px solid rgba(242, 95, 56, 0.35) !important;
    border-radius: 16px !important;
    padding: 18px 20px !important;
    margin-top: 14px !important;
    margin-bottom: 22px !important;
    text-align: left !important;
}

.text-orange-header {
    font-family: 'Poppins', sans-serif !important;
    font-size: 0.88rem !important;
    font-weight: 800 !important;
    color: #F25F38 !important;
}

.text-orange-bold {
    color: #F25F38 !important;
    font-weight: 700 !important;
}

.delivery-support-notice.orange-notice p {
    font-size: 0.84rem !important;
    color: #334155 !important;
    line-height: 1.55 !important;
    margin: 0 !important;
}


/* SECTION: FAQ ACCORDION WITH BRAND ORANGE QUESTIONS & VECTOR ICONS */
.section-faq {
    padding: 85px 24px 105px 24px !important;
    background: #f8fafc !important;
}

.faq-container {
    max-width: 960px !important;
    margin: 0 auto !important;
}

.faq-header {
    text-align: center !important;
    margin-bottom: 48px !important;
}

.faq-main-title {
    font-family: 'Poppins', sans-serif !important;
    font-size: 2.2rem !important;
    font-weight: 800 !important;
    color: #0f172a !important;
    margin-bottom: 10px !important;
}

.faq-subtitle {
    font-size: 1.05rem !important;
    color: #64748b !important;
}

.faq-accordion-list {
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
}

.faq-item {
    background: #ffffff !important;
    border-radius: 18px !important;
    border: 1px solid #e2e8f0 !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02) !important;
    overflow: hidden !important;
    transition: border-color 0.2s ease, box-shadow 0.2s ease !important;
}

.faq-item:hover {
    border-color: rgba(242, 95, 56, 0.35) !important;
    box-shadow: 0 10px 25px rgba(242, 95, 56, 0.06) !important;
}

.faq-question-btn {
    width: 100% !important;
    padding: 22px 26px !important;
    background: transparent !important;
    border: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    text-align: left !important;
    cursor: pointer !important;
}

.faq-q-left {
    display: flex !important;
    align-items: center !important;
    gap: 14px !important;
}

.faq-icon-box {
    width: 40px !important;
    height: 40px !important;
    border-radius: 10px !important;
    background: rgba(242, 95, 56, 0.1) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
}

.faq-question-text {
    font-family: 'Poppins', sans-serif !important;
    font-size: 1.05rem !important;
    font-weight: 700 !important;
    color: #F25F38 !important; /* ORANGE COLOR FOR QUESTIONS */
    line-height: 1.35 !important;
}

.faq-toggle-icon {
    font-size: 1.4rem !important;
    font-weight: 700 !important;
    color: #F25F38 !important;
    margin-left: 16px !important;
    flex-shrink: 0 !important;
}

.faq-answer-panel {
    display: none;
    padding: 0 26px 22px 80px !important;
    border-top: 1px dashed #f1f5f9 !important;
}

.faq-item.active .faq-answer-panel {
    display: block !important;
    padding-top: 16px !important;
}

.faq-answer-panel p {
    font-size: 1rem !important;
    color: #475569 !important;
    line-height: 1.6 !important;
    margin: 0 !important;
}

.faq-answer-panel a {
    color: #1E5EFF !important;
    font-weight: 600 !important;
    text-decoration: none !important;
}

.faq-answer-panel a:hover {
    text-decoration: underline !important;
}

@media (max-width: 640px) {
    .faq-answer-panel {
        padding-left: 26px !important;
    }
}


/* FAQ ACCORDION CLICK EVENT FIX */
.faq-question-btn * {
    pointer-events: none !important;
}

.faq-item.active .faq-answer-panel {
    display: block !important;
}


/* DARK BLACK COLOR FOR FAQ QUESTIONS & TOGGLE ICON */
.faq-question-text {
    font-family: 'Poppins', sans-serif !important;
    font-size: 1.05rem !important;
    font-weight: 700 !important;
    color: #0f172a !important;
    line-height: 1.35 !important;
}

.faq-toggle-icon {
    font-size: 1.4rem !important;
    font-weight: 700 !important;
    color: #0f172a !important;
    margin-left: 16px !important;
    flex-shrink: 0 !important;
}


/* FAQ SECTION LIGHT BLUE BACKGROUND TINT MATCHING HERO SECTION */
.section-faq {
    padding: 85px 24px 105px 24px !important;
    background: linear-gradient(to left, 
        rgba(30, 94, 255, 0.09) 0%, 
        rgba(219, 234, 254, 0.25) 45%, 
        rgba(255, 255, 255, 0.96) 85%, 
        #ffffff 100%) !important;
}

.faq-icon-box {
    width: 40px !important;
    height: 40px !important;
    border-radius: 10px !important;
    background: rgba(30, 94, 255, 0.1) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
}


/* CLEAN FAQ ACCORDION DISPLAY STYLING */
.faq-answer-panel {
    display: none;
    padding: 0 26px 22px 80px !important;
    border-top: 1px dashed #f1f5f9 !important;
}

.faq-item.active .faq-answer-panel {
    display: block !important;
    padding-top: 16px !important;
}

.faq-question-btn {
    cursor: pointer !important;
    user-select: none !important;
}

.faq-question-btn * {
    pointer-events: none !important;
}


/* SECTION 3.5: WHAT'S INSIDE? SECTION & EXCEL BADGE STYLING */
.section-whats-inside {
    padding: 75px 24px !important;
    background: #f8fafc !important;
}

.whats-inside-container {
    max-width: 1280px !important;
    margin: 0 auto !important;
}

.whats-inside-card {
    background: #ffffff !important;
    border-radius: 28px !important;
    border: 1px solid #e2e8f0 !important;
    padding: 48px 54px !important;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 48px !important;
}

.whats-inside-left {
    flex: 0.9 !important;
    max-width: 480px !important;
}

.whats-inside-title {
    font-family: 'Poppins', sans-serif !important;
    font-size: 2.3rem !important;
    font-weight: 800 !important;
    color: #0f172a !important;
    margin-bottom: 32px !important;
}

.whats-inside-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 20px !important;
}

.whats-inside-list li {
    display: flex !important;
    align-items: center !important;
    gap: 16px !important;
}

.whats-inside-check {
    flex-shrink: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.whats-inside-list span {
    font-family: 'Inter', sans-serif !important;
    font-size: 1.05rem !important;
    font-weight: 600 !important;
    color: #1e293b !important;
    line-height: 1.4 !important;
}

.whats-inside-right {
    flex: 1.1 !important;
    position: relative !important;
}

.whats-inside-img-wrapper {
    position: relative !important;
    border-radius: 20px !important;
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    box-shadow: 0 20px 45px rgba(30, 94, 255, 0.08) !important;
    overflow: visible !important;
}

.table-img-placeholder {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
}

.placeholder-header {
    background: #f1f5f9;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid #e2e8f0;
}

.placeholder-dots {
    display: flex;
    gap: 6px;
}

.placeholder-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.placeholder-dots .dot.red { background: #ff5f56; }
.placeholder-dots .dot.yellow { background: #ffbd2e; }
.placeholder-dots .dot.green { background: #27c93f; }

.placeholder-filename {
    font-size: 0.8rem;
    font-weight: 600;
    color: #64748b;
}

.placeholder-table-mock {
    padding: 16px 20px;
    font-size: 0.82rem;
}

.mock-row {
    display: grid;
    grid-template-columns: 1.4fr 1.1fr 1.6fr 1.3fr 1.3fr 1fr;
    gap: 8px;
    padding: 8px 10px;
    border-bottom: 1px solid #f1f5f9;
    color: #334155;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mock-row.header-row {
    font-weight: 700;
    color: #0f172a;
    background: #f8fafc;
    border-radius: 6px;
}

.floating-excel-badge {
    position: absolute !important;
    bottom: -20px !important;
    right: -18px !important;
    background: #ffffff !important;
    border-radius: 16px !important;
    padding: 12px 20px !important;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12) !important;
    border: 1px solid #e2e8f0 !important;
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    z-index: 10 !important;
}

.badge-text-wrap {
    display: flex !important;
    flex-direction: column !important;
}

.badge-sub {
    font-size: 0.72rem !important;
    color: #64748b !important;
    font-weight: 500 !important;
}

.badge-main {
    font-family: 'Poppins', sans-serif !important;
    font-size: 0.95rem !important;
    color: #0f172a !important;
    font-weight: 700 !important;
}

@media (max-width: 992px) {
    .whats-inside-card {
        flex-direction: column;
        padding: 32px 24px;
    }
    .whats-inside-left, .whats-inside-right {
        max-width: 100%;
        width: 100%;
    }
}


/* WHAT'S INSIDE REAL IMAGE STYLING */
.whats-inside-real-img {
    width: 100% !important;
    height: auto !important;
    display: block !important;
    border-radius: 20px !important;
    object-fit: cover !important;
}


/* REMOVED BLUE TINT - CLEAN CRISP WHITE / LIGHT NEUTRAL BACKGROUNDS */
.section-whats-inside {
    padding: 75px 24px !important;
    background: #ffffff !important;
}

.whats-inside-img-wrapper {
    position: relative !important;
    border-radius: 20px !important;
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05) !important;
    overflow: visible !important;
}

.section-faq {
    padding: 85px 24px 105px 24px !important;
    background: #ffffff !important;
}


/* SECTION 2.5: DEDICATED PROOF SECTION STYLING */
.section-proof-table {
    padding: 75px 24px !important;
    background: #ffffff !important;
}

.proof-container {
    max-width: 1280px !important;
    margin: 0 auto !important;
}

.proof-header {
    text-align: center !important;
    margin-bottom: 40px !important;
}

.proof-title {
    font-family: 'Poppins', sans-serif !important;
    font-size: 2.3rem !important;
    font-weight: 800 !important;
    color: #0f172a !important;
    margin-bottom: 10px !important;
}

.proof-subtitle {
    font-size: 1.05rem !important;
    color: #64748b !important;
}

.proof-macbook-frame {
    position: relative !important;
    background: #ffffff !important;
    border-radius: 24px !important;
    border: 1px solid #e2e8f0 !important;
    box-shadow: 0 25px 60px rgba(30, 94, 255, 0.08), 0 10px 25px rgba(0, 0, 0, 0.05) !important;
    overflow: visible !important;
    padding: 0 !important;
}

.proof-window-header {
    background: #f1f5f9 !important;
    padding: 12px 20px !important;
    display: flex !important;
    align-items: center !important;
    gap: 16px !important;
    border-bottom: 1px solid #e2e8f0 !important;
    border-top-left-radius: 24px !important;
    border-top-right-radius: 24px !important;
}

.proof-excel-badge {
    position: absolute !important;
    top: -24px !important;
    right: -18px !important;
    background: #ffffff !important;
    border-radius: 16px !important;
    padding: 10px 18px !important;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12) !important;
    border: 1px solid #e2e8f0 !important;
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    z-index: 10 !important;
}

.proof-table-wrap {
    overflow-x: auto !important;
    padding: 16px 20px !important;
}

.proof-leads-table {
    width: 100% !important;
    border-collapse: collapse !important;
    font-size: 0.88rem !important;
}

.proof-leads-table th {
    background: #f8fafc !important;
    color: #0f172a !important;
    font-family: 'Poppins', sans-serif !important;
    font-weight: 700 !important;
    padding: 14px 16px !important;
    text-align: left !important;
    border-bottom: 2px solid #e2e8f0 !important;
    white-space: nowrap !important;
}

.proof-leads-table td {
    padding: 14px 16px !important;
    border-bottom: 1px solid #f1f5f9 !important;
    color: #334155 !important;
    white-space: nowrap !important;
}

.cat-pill {
    background: rgba(30, 94, 255, 0.08) !important;
    color: #1E5EFF !important;
    font-weight: 600 !important;
    font-size: 0.8rem !important;
    padding: 4px 10px !important;
    border-radius: 6px !important;
}


/* RAZORPAY TRUST BADGE STYLING */
.razorpay-trust-badge {
    display: inline-flex !important;
    align-items: center !important;
    gap: 7px !important;
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 20px !important;
    padding: 4px 12px !important;
    margin-top: 14px !important;
    margin-bottom: 6px !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04) !important;
}

.secured-text {
    font-size: 0.76rem !important;
    font-weight: 600 !important;
    color: #64748b !important;
}

.razorpay-trust-badge.dark-mode {
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    margin-top: 10px !important;
    margin-bottom: 4px !important;
}

.secured-text-dark {
    font-size: 0.76rem !important;
    font-weight: 600 !important;
    color: #94a3b8 !important;
}


/* WHAT'S INSIDE SECTION - MACBOOK UI & FULL-WIDTH IMAGE */
.section-whats-inside {
    padding: 85px 24px 105px 24px !important;
    background: #ffffff !important;
}

.whats-inside-container {
    max-width: 1200px !important;
    margin: 0 auto !important;
}

.whats-inside-header {
    text-align: center !important;
    max-width: 840px !important;
    margin: 0 auto 42px auto !important;
}

.whats-inside-title {
    font-family: 'Poppins', sans-serif !important;
    font-size: 2.5rem !important;
    font-weight: 800 !important;
    color: #0f172a !important;
    margin-bottom: 14px !important;
}

.whats-inside-subheadline {
    font-family: 'Inter', sans-serif !important;
    font-size: 1.1rem !important;
    color: #475569 !important;
    line-height: 1.65 !important;
    margin: 0 !important;
}

.whats-inside-subheadline strong {
    color: #0f172a !important;
}

.whats-inside-macbook-frame {
    position: relative !important;
    background: #ffffff !important;
    border-radius: 24px !important;
    border: 1px solid #e2e8f0 !important;
    box-shadow: 0 25px 60px rgba(30, 94, 255, 0.08), 0 10px 25px rgba(0, 0, 0, 0.05) !important;
    overflow: visible !important;
}

.macbook-window-bar {
    background: #f1f5f9 !important;
    padding: 14px 22px !important;
    display: flex !important;
    align-items: center !important;
    gap: 16px !important;
    border-bottom: 1px solid #e2e8f0 !important;
    border-top-left-radius: 24px !important;
    border-top-right-radius: 24px !important;
}

.macbook-img-container {
    padding: 0 !important;
    overflow: hidden !important;
    border-bottom-left-radius: 24px !important;
    border-bottom-right-radius: 24px !important;
}

.whats-inside-full-img {
    width: 100% !important;
    height: auto !important;
    display: block !important;
    object-fit: contain !important;
    border-bottom-left-radius: 24px !important;
    border-bottom-right-radius: 24px !important;
}


/* VERY SMALL RAZORPAY LOGO BELOW PRICING (NO TEXT) */
.rzp-mini-wrap {
    display: block !important;
    text-align: center !important;
    margin-top: 6px !important;
    margin-bottom: 8px !important;
}

.razorpay-mini-logo {
    height: 16px !important;
    width: auto !important;
    display: inline-block !important;
    vertical-align: middle !important;
    opacity: 0.85 !important;
}

.razorpay-mini-logo.dark-mode {
    filter: brightness(0) invert(1) !important;
    opacity: 0.8 !important;
}


/* STANDARDIZED CONTAINER MAX-WIDTH & SIDE PADDING (OPTIMIZED FOR 14" LAPTOPS) */
.header-container,
.hero-container,
.categories-container,
.process-pricing-container,
.whats-inside-container,
.testimonials-container,
.faq-container,
.dark-footer-container {
    max-width: 1380px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 48px !important;
    padding-right: 48px !important;
    box-sizing: border-box !important;
}

/* HERO SECTION VERTICAL PADDING OPTIMIZED FOR 14" LAPTOP VIEWPORT */
.leadvault-hero {
        padding-top: 8px !important;
        padding-bottom: 8px !important;
    box-sizing: border-box !important;
}

@media (max-width: 768px) {
    .header-container,
    .hero-container,
    .categories-container,
    .process-pricing-container,
    .whats-inside-container,
    .testimonials-container,
    .faq-container,
    .dark-footer-container {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
}


/* HERO MACBOOK WINDOW FLOATING BOTTOM PRICE TAG (₹199 only) */
.hero-visual, .leadvault-visual {
    overflow: visible !important;
}

.replica-table-container {
    position: relative !important;
    overflow: visible !important;
}

.hero-bottom-price-tag {
    position: absolute !important;
    bottom: -18px !important;
    left: 20px !important;
    background: #1E5EFF !important;
    color: #ffffff !important;
    font-family: 'Poppins', sans-serif !important;
    font-size: 0.95rem !important;
    font-weight: 800 !important;
    padding: 8px 18px !important;
    border-radius: 12px !important;
    box-shadow: 0 10px 25px rgba(30, 94, 255, 0.4) !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    z-index: 99 !important;
}

.price-tag-icon {
    font-size: 1rem !important;
}

.price-tag-text {
    letter-spacing: -0.2px !important;
}

/* HERO TITLE EXACT LINE ALIGNMENT & NOWRAP LOCK */
.hero-title .line-nowrap {
    white-space: nowrap !important;
    display: inline-block !important;
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 2.85rem !important;
        line-height: 1.25 !important;
    }
}

/* MOBILE VIEWPORT STYLES (MAX-WIDTH: 768PX) - CENTER ALIGNED HERO */
@media (max-width: 768px) {
    .leadvault-hero {
        padding-top: 8px !important;
        padding-bottom: 8px !important;
    }

    .header-container {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }

    .hero-container.leadvault-grid {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        gap: 24px !important;
        padding-left: 16px !important;
        padding-right: 16px !important;
    }

    .hero-content {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        width: 100% !important;
    }

    .badge-pill {
        margin: 0 auto 14px auto !important;
        font-size: 0.72rem !important;
        padding: 5px 12px !important;
    }

    .hero-title {
        text-align: center !important;
        font-size: 1.85rem !important;
        line-height: 1.3 !important;
        margin-bottom: 14px !important;
    }

    .hero-title .line-nowrap {
        white-space: normal !important;
        display: inline !important;
    }

    .hero-description {
        text-align: center !important;
        font-size: 0.92rem !important;
        line-height: 1.55 !important;
        margin: 0 auto 20px auto !important;
        max-width: 100% !important;
    }

    .feature-highlights-row {
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 10px !important;
        width: 100% !important;
        margin-bottom: 20px !important;
    }

    .feature-item {
        display: inline-flex !important;
        align-items: center !important;
        gap: 8px !important;
        text-align: left !important;
        background: #ffffff !important;
        padding: 8px 12px !important;
        border-radius: 12px !important;
        border: 1px solid #e2e8f0 !important;
    }

    .pricing-anchor {
        justify-content: center !important;
        margin: 0 auto 16px auto !important;
    }

    .hero-actions {
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
        gap: 12px !important;
    }

    .btn-hero-primary, .btn-hero-secondary {
        width: 100% !important;
        justify-content: center !important;
        padding: 14px 20px !important;
        font-size: 0.95rem !important;
    }

    .micro-copy {
        text-align: center !important;
        margin-top: 10px !important;
    }

    .hero-visual, .leadvault-visual {
        width: 100% !important;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }

    .replica-table-container {
        padding: 10px !important;
        border-radius: 14px !important;
    }

    .replica-table-scroll {
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
    }
}


/* MOBILE HERO SECTION OPTIMIZATION (MAX-WIDTH: 768PX) */
@media (max-width: 768px) {
    .leadvault-hero {
        padding-top: 8px !important;
        padding-bottom: 8px !important;
        overflow-x: hidden !important;
    }

    .header-container {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    .hero-container.leadvault-grid {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        gap: 20px !important;
        padding-left: 20px !important;
        padding-right: 20px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .hero-content {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .badge-pill {
        margin: 0 auto 12px auto !important;
        font-size: 0.7rem !important;
        padding: 5px 12px !important;
    }

    /* Fixed Headline for Mobile Phone Screens */
    .hero-title {
        text-align: center !important;
        font-size: 1.55rem !important;
        line-height: 1.32 !important;
        margin-bottom: 14px !important;
        width: 100% !important;
        box-sizing: border-box !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
    }

    .hero-title .line-nowrap {
        white-space: normal !important;
        display: inline !important;
    }

    .hero-description {
        text-align: center !important;
        font-size: 0.9rem !important;
        line-height: 1.5 !important;
        margin: 0 auto 20px auto !important;
        max-width: 100% !important;
        padding: 0 4px !important;
    }

    /* Feature Items Stack Vertically One After Another */
    .feature-highlights-row {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 10px !important;
        width: 100% !important;
        margin-bottom: 20px !important;
    }

    .feature-item {
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
        gap: 12px !important;
        text-align: left !important;
        background: #ffffff !important;
        padding: 10px 16px !important;
        border-radius: 14px !important;
        border: 1px solid #e2e8f0 !important;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04) !important;
        width: 100% !important;
        max-width: 320px !important;
        box-sizing: border-box !important;
    }

    .pricing-anchor {
        justify-content: center !important;
        margin: 0 auto 14px auto !important;
        font-size: 0.88rem !important;
    }

    .hero-actions {
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
        gap: 10px !important;
    }

    .btn-hero-primary, .btn-hero-secondary {
        width: 100% !important;
        justify-content: center !important;
        padding: 14px 18px !important;
        font-size: 0.92rem !important;
        box-sizing: border-box !important;
    }

    .micro-copy {
        text-align: center !important;
        margin-top: 10px !important;
        font-size: 0.85rem !important;
    }

    .hero-visual, .leadvault-visual {
        width: 100% !important;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }

    .replica-table-container {
        padding: 6px !important;
        border-radius: 12px !important;
        width: 100% !important;
        box-sizing: border-box !important;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }

    .replica-table-scroll {
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
    }
}


/* ==========================================================================
   UNIFIED MASTER MOBILE STYLES (MAX-WIDTH: 768PX)
   ========================================================================== */
@media (max-width: 768px) {
    /* 1. Hero Section Container Padding */
    .leadvault-hero {
        padding-top: 16px !important;
        padding-bottom: 24px !important;
        overflow-x: hidden !important;
    }

    .hero-container,
    .hero-container.leadvault-grid {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        gap: 0 !important;
        padding-left: 16px !important;
        padding-right: 16px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin: 0 auto !important;
    }

    .hero-content {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    /* 2. Badge Pill (16px bottom margin) */
    .badge-pill, .pricing-badge-pill {
        margin: 0 auto 16px auto !important;
        font-size: 14px !important;
        padding: 5px 14px !important;
    }

    /* 3. Main Headline (16px bottom margin) */
    .hero-title, 
    h1.hero-title, 
    .hero-title.poppins-title,
    .hero-title *,
    .hero-title .typewriter-container,
    .hero-title .typewriter-text,
    .hero-title .text-blue-highlight,
    .hero-title .text-orange,
    .hero-title .line-nowrap {
        font-family: 'Poppins', sans-serif !important;
        font-size: 32px !important;
        font-weight: 800 !important;
        line-height: 1.25 !important;
        letter-spacing: -0.02em !important;
    }

    .hero-title {
        text-align: center !important;
        margin-top: 0 !important;
        margin-bottom: 16px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        padding-left: 4px !important;
        padding-right: 4px !important;
    }

    .hero-title .line-nowrap {
        white-space: normal !important;
        display: inline !important;
    }

    /* 4. Hero Description / Body Text (16px bottom margin) */
    .hero-description {
        font-size: 16.5px !important;
        line-height: 1.6 !important;
        margin-top: 0 !important;
        margin-bottom: 16px !important;
        max-width: 100% !important;
        padding: 0 4px !important;
        color: #475569 !important;
    }

    /* 5. 3 Feature Illustrations Row (16px bottom margin) */
    .feature-highlights-row {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 6px !important;
        width: 100% !important;
        max-width: 360px !important;
        margin-top: 0 !important;
        margin-bottom: 16px !important;
        justify-content: center !important;
        box-sizing: border-box !important;
    }

    .feature-item {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        gap: 6px !important;
        padding: 2px !important;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .feature-icon-circle {
        margin: 0 auto 2px auto !important;
    }

    .feature-text {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        gap: 2px !important;
    }

    .feature-text strong {
        font-size: 13.5px !important;
        line-height: 1.2 !important;
        white-space: nowrap !important;
    }

    .feature-text span {
        font-size: 12.5px !important;
        line-height: 1.15 !important;
        white-space: nowrap !important;
    }

    /* 6. Pricing Anchor (16px bottom margin) */
    .pricing-anchor {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        margin-top: 0 !important;
        margin-bottom: 16px !important;
        font-size: 15.5px !important;
    }

    .discount-tag {
        font-size: 13px !important;
    }

    /* 7. CTA Buttons (16px bottom margin after buttons stack) */
    .hero-actions {
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
        gap: 10px !important;
        margin-top: 0 !important;
        margin-bottom: 16px !important;
    }

    .btn-hero-primary, .btn-hero-secondary, .btn-pricing-cta, .btn-blue-cta, .btn-black {
        width: 100% !important;
        justify-content: center !important;
        padding: 14px 18px !important;
        font-size: 16.5px !important;
        box-sizing: border-box !important;
    }

    /* 8. Micro Copy (16px bottom margin to hero image) */
    .micro-copy, .cta-subtext {
        text-align: center !important;
        margin-top: 0 !important;
        margin-bottom: 16px !important;
        font-size: 15px !important;
    }

    /* 9. Hero Visual (Google Sheets Card) */
    .hero-visual, .leadvault-visual {
        width: 100% !important;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }

    .replica-table-container {
        padding: 6px !important;
        border-radius: 12px !important;
        width: 100% !important;
        box-sizing: border-box !important;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }

    /* Section 2: Categories */
    .category-name {
        font-size: 16px !important;
    }

    /* Section 3: Process & Pricing */
    .process-title, .pricing-title {
        font-size: 34px !important;
    }

    .step-title {
        font-size: 18px !important;
    }

    .step-description {
        font-size: 15.5px !important;
    }

    .notice-box, .delivery-notice-box {
        font-size: 16px !important;
        line-height: 1.55 !important;
    }

    .pricing-amount {
        font-size: 54px !important;
    }

    .pricing-feature-item span,
    .pricing-feature-item strong {
        font-size: 16.5px !important;
    }

    /* Section 3.5: What's Inside */
    .whats-inside-title {
        font-size: 34px !important;
    }

    .whats-inside-subheadline {
        font-size: 18px !important;
        line-height: 1.6 !important;
    }

    .badge-main {
        font-size: 15px !important;
    }

    .badge-sub {
        font-size: 13px !important;
    }

    /* Section 4: Testimonials */
    .testimonials-title {
        font-size: 34px !important;
    }

    .testimonial-quote {
        font-size: 16.5px !important;
        line-height: 1.6 !important;
    }

    .author-name {
        font-size: 16px !important;
    }

    .author-role {
        font-size: 14.5px !important;
    }

    /* Section 5: FAQ */
    .faq-title {
        font-size: 34px !important;
    }

    .faq-question-btn {
        font-size: 17.5px !important;
    }

    .faq-answer-panel p {
        font-size: 16.5px !important;
        line-height: 1.6 !important;
    }

    /* Footer */
    .footer-brand-tagline {
        font-size: 22px !important;
    }

    .footer-nav a,
    .footer-links a {
        font-size: 16.5px !important;
    }

    .support-card-title {
        font-size: 17.5px !important;
    }

    .support-card-email {
        font-size: 15.5px !important;
    }

    .footer-copyright {
        font-size: 14.5px !important;
    }
}



/* ==========================================================================
   5 HIGH-VALUE CATEGORIES BANNER (ENHANCED & CENTER ALIGNED)
   ========================================================================== */
.categories-banner-section {
    padding: 24px 24px 48px 24px;
    background: #ffffff;
}

.categories-container {
    max-width: 1380px;
    margin: 0 auto;
}

.categories-card {
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 12px 32px -4px rgba(30, 94, 255, 0.08), 0 4px 12px rgba(0, 0, 0, 0.03);
    padding: 24px 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.categories-title-block {
    flex-shrink: 0;
}

.categories-title-block h2,
.categories-title-block h2 *,
.categories-title-block h2 span {
    font-family: 'Poppins', sans-serif !important;
    font-weight: 800 !important;
    letter-spacing: -0.02em !important;
}

.categories-title-block h2 {
    font-family: 'Poppins', sans-serif !important;
    font-size: 2.3rem !important;
    font-weight: 800 !important;
    color: #0f172a !important;
    line-height: 1.2 !important;
    letter-spacing: -0.02em !important;
    margin: 0 !important;
    white-space: nowrap;
}

.categories-title-block h2 .text-orange {
    color: #f25f38 !important;
    font-weight: 800 !important;
}

.categories-title-block h2 .text-blue-highlight {
    color: #1e5eff !important;
    font-weight: 800 !important;
}

.categories-divider {
    width: 1px;
    height: 48px;
    background: #e2e8f0;
    margin: 0 20px;
    flex-shrink: 0;
}

.categories-list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 16px;
}

.category-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    flex: 1;
    padding: 10px 8px;
    border-radius: 12px;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.category-item:hover {
    background-color: #f8fafc;
    transform: translateY(-2px);
}

.cat-icon-wrap {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: rgba(30, 94, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.cat-name {
    font-family: 'Inter', sans-serif !important;
    font-size: 0.88rem !important;
    font-weight: 600 !important;
    color: #1e293b !important;
    line-height: 1.25 !important;
    text-align: center !important;
}

@media (max-width: 992px) {
    .categories-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
        padding: 24px 20px;
    }
    .categories-title-block {
        text-align: center;
    }
    .categories-title-block h2,
.categories-title-block h2 *,
.categories-title-block h2 span {
    font-family: 'Poppins', sans-serif !important;
    font-weight: 800 !important;
    letter-spacing: -0.02em !important;
}

.categories-title-block h2 {
    font-family: 'Poppins', sans-serif !important;
    font-size: 2.3rem !important;
    font-weight: 800 !important;
    color: #0f172a !important;
    line-height: 1.2 !important;
    letter-spacing: -0.02em !important;
    margin: 0 !important;
    white-space: nowrap;
}

.categories-title-block h2 .text-orange {
    color: #f25f38 !important;
    font-weight: 800 !important;
}

.categories-title-block h2 .text-blue-highlight {
    color: #1e5eff !important;
    font-weight: 800 !important;
}
    .categories-divider {
        display: none;
    }
    .categories-list {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 14px;
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .categories-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        width: 100%;
    }
    .categories-list .category-item:last-child {
        grid-column: span 2;
        max-width: 180px;
        margin: 0 auto;
    }
    .category-item {
        padding: 12px 6px;
        background: #f8fafc;
        border: 1px solid #edf2f7;
    }
    .cat-name {
        font-size: 0.84rem !important;
    }
}



/* WHAT'S INSIDE - CLEAN RECTANGULAR WINDOW & IMAGE (NO CURVED EDGES) */
.whats-inside-macbook-frame {
    position: relative !important;
    background: #ffffff !important;
    border-radius: 0 !important;
    border: 1px solid #cbd5e1 !important;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08) !important;
    overflow: hidden !important;
}

.macbook-window-bar {
    background: #f1f5f9 !important;
    padding: 12px 20px !important;
    display: flex !important;
    align-items: center !important;
    gap: 16px !important;
    border-bottom: 1px solid #cbd5e1 !important;
    border-radius: 0 !important;
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
}

.macbook-img-container {
    padding: 0 !important;
    overflow: hidden !important;
    border-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}

.whats-inside-full-img {
    width: 100% !important;
    height: auto !important;
    display: block !important;
    object-fit: contain !important;
    border-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}

.floating-excel-badge {
    display: none !important;
}



/* ==========================================================================
   MOBILE FOOTER - 100% CENTER-ALIGNED VERTICAL STACK (ONE BY ONE)
   ========================================================================== */
@media (max-width: 768px) {
    .site-footer-dark {
        padding: 48px 16px 28px 16px !important;
        overflow: hidden !important;
        position: relative !important;
    }

    /* Hide overlapping decorative background shapes on mobile */
    .footer-decor {
        display: none !important;
    }

    .dark-footer-container {
        padding-left: 0 !important;
        padding-right: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
    }

    .footer-main-grid {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        gap: 36px !important;
        width: 100% !important;
    }

    /* 1. Brand & CTA Column (Centered) */
    .footer-col-brand {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        width: 100% !important;
        max-width: 420px !important;
        margin: 0 auto !important;
    }

    .footer-logo-wrap {
        display: flex !important;
        justify-content: center !important;
        margin: 0 auto 16px auto !important;
        width: 100% !important;
    }

    .big-footer-logo {
        margin: 0 auto !important;
        max-width: 170px !important;
        height: auto !important;
    }

    .footer-col-brand h2 {
        font-family: 'Poppins', sans-serif !important;
        font-size: 24px !important;
        font-weight: 800 !important;
        color: #ffffff !important;
        line-height: 1.28 !important;
        text-align: center !important;
        margin: 0 auto 12px auto !important;
    }

    .footer-col-brand p {
        font-family: 'Inter', sans-serif !important;
        font-size: 15px !important;
        color: #94a3b8 !important;
        line-height: 1.55 !important;
        text-align: center !important;
        margin: 0 auto 20px auto !important;
        max-width: 320px !important;
    }

    .footer-cta-wrap {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        width: 100% !important;
    }

    .btn-blue-cta {
        width: 100% !important;
        max-width: 340px !important;
        justify-content: center !important;
        padding: 14px 20px !important;
        font-size: 16px !important;
        margin: 0 auto !important;
        box-sizing: border-box !important;
    }

    .cta-subtext {
        text-align: center !important;
        margin-top: 10px !important;
        font-size: 14px !important;
        color: #64748b !important;
    }

    /* 2. Quick Links Column (Centered Vertical List) */
    .footer-col-links {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        width: 100% !important;
        margin: 0 auto !important;
    }

    .footer-col-title {
        font-family: 'Poppins', sans-serif !important;
        font-size: 18px !important;
        font-weight: 700 !important;
        color: #ffffff !important;
        text-align: center !important;
        margin: 0 auto 16px auto !important;
    }

    .vertical-hot-links {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        gap: 12px !important;
        padding: 0 !important;
        margin: 0 auto !important;
        list-style: none !important;
        width: 100% !important;
    }

    .vertical-hot-links li {
        text-align: center !important;
        width: 100% !important;
    }

    .vertical-hot-links a {
        display: inline-block !important;
        font-family: 'Inter', sans-serif !important;
        font-size: 15.5px !important;
        color: #cbd5e1 !important;
        text-decoration: none !important;
        text-align: center !important;
        transition: color 0.2s ease !important;
    }

    /* 3. Support Card Column (Centered) */
    .footer-col-support {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        width: 100% !important;
        margin: 0 auto !important;
    }

    .white-support-box {
        background: #ffffff !important;
        border-radius: 16px !important;
        padding: 20px 18px !important;
        width: 100% !important;
        max-width: 340px !important;
        margin: 0 auto 16px auto !important;
        text-align: center !important;
        box-sizing: border-box !important;
    }

    .support-box-header {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 8px !important;
        margin-bottom: 8px !important;
    }

    .support-box-header h4 {
        font-size: 15px !important;
        font-weight: 700 !important;
        color: #0f172a !important;
        margin: 0 !important;
    }

    .white-support-box p {
        font-size: 13.5px !important;
        color: #475569 !important;
        line-height: 1.45 !important;
        margin: 0 0 10px 0 !important;
        text-align: center !important;
    }

    .support-email-link {
        font-size: 14.5px !important;
        font-weight: 700 !important;
        color: #1e5eff !important;
        text-align: center !important;
        display: inline-block !important;
    }

    .footer-social-icons-row {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 12px !important;
        margin: 0 auto !important;
    }

    /* 4. Bottom Copyright Row (Centered) */
    .footer-bottom-row {
        border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
        padding-top: 24px !important;
        margin-top: 12px !important;
        text-align: center !important;
        width: 100% !important;
    }

    .footer-bottom-row p {
        font-family: 'Inter', sans-serif !important;
        font-size: 13.5px !important;
        color: #94a3b8 !important;
        line-height: 1.6 !important;
        text-align: center !important;
        margin: 0 auto !important;
    }

    .footer-bottom-row a {
        color: #cbd5e1 !important;
    }
}



/* ==========================================================================
   MOBILE HEADER & ANIMATED MENU DRAWER
   ========================================================================== */
@media (max-width: 768px) {
    .site-header {
        position: relative !important;
        background: rgba(255, 255, 255, 0.98) !important;
        backdrop-filter: blur(10px) !important;
        -webkit-backdrop-filter: blur(10px) !important;
        z-index: 9999 !important;
    }

    .header-container {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        position: relative !important;
    }

    .mobile-menu-toggle {
        display: flex !important;
        flex-direction: column !important;
        justify-content: space-between !important;
        width: 26px !important;
        height: 18px !important;
        background: transparent !important;
        border: none !important;
        cursor: pointer !important;
        z-index: 10001 !important;
        padding: 0 !important;
    }

    .mobile-menu-toggle .bar {
        width: 100% !important;
        height: 2.5px !important;
        background: #0f172a !important;
        border-radius: 2px !important;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    }

    /* Animated Cross 'X' on toggle */
    .mobile-menu-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg) !important;
        background: #1e5eff !important;
    }
    .mobile-menu-toggle.active .bar:nth-child(2) {
        opacity: 0 !important;
    }
    .mobile-menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg) !important;
        background: #1e5eff !important;
    }

    /* Smooth Slide-down Navigation Drawer */
    .main-nav {
        display: none !important;
    }

    .main-nav.active {
        display: block !important;
        position: absolute !important;
        top: 100% !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        background: #ffffff !important;
        box-shadow: 0 20px 40px -5px rgba(0, 0, 0, 0.14), 0 8px 16px rgba(0, 0, 0, 0.06) !important;
        border-bottom: 3px solid #1e5eff !important;
        padding: 16px 20px 22px 20px !important;
        z-index: 10000 !important;
        animation: menuSlideDown 0.25s cubic-bezier(0.16, 1, 0.3, 1) forwards !important;
    }

    .main-nav.active .nav-list {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 12px !important;
        padding: 0 !important;
        margin: 0 !important;
        list-style: none !important;
    }

    .main-nav.active .nav-link {
        font-family: 'Poppins', sans-serif !important;
        font-size: 16.5px !important;
        font-weight: 600 !important;
        color: #0f172a !important;
        text-decoration: none !important;
        padding: 8px 0 !important;
        display: block !important;
        width: 100% !important;
        border-bottom: 1px solid #f1f5f9 !important;
        transition: color 0.2s ease, padding-left 0.2s ease !important;
    }

    .main-nav.active .nav-link:hover,
    .main-nav.active .nav-link.active {
        color: #1e5eff !important;
        padding-left: 6px !important;
    }
}

@keyframes menuSlideDown {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}



/* HEADER TOP SEAMLESS INTEGRATION (NO TINT LEAKING ABOVE HEADER) */
.site-header {
    background: transparent !important;
    padding-top: 16px !important;
    padding-bottom: 16px !important;
    width: 100% !important;
    position: relative !important;
    z-index: 100 !important;
}

.leadvault-hero {
    padding-top: 0 !important;
}

@media (max-width: 768px) {
    .leadvault-hero {
        padding-top: 0 !important;
        padding-bottom: 24px !important;
    }

    .site-header {
        background: transparent !important;
        padding-top: 14px !important;
        padding-bottom: 14px !important;
        width: 100% !important;
        margin-top: 0 !important;
    }

    .header-container {
        padding-left: 16px !important;
        padding-right: 16px !important;
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }

    .hero-container.leadvault-grid {
        padding-top: 16px !important;
    }
}



/* EXACT HEADLINE 3-LINE ALIGNMENT (LINE 1: Tired Of Pitching ₹1,000 | LINE 2: Gigs? Start Closing) */
.hero-title .line-1-wrap {
    white-space: nowrap !important;
    display: inline-block !important;
}

.hero-title .line-2-wrap {
    white-space: nowrap !important;
    display: inline-block !important;
}

@media (max-width: 768px) {
    .hero-title, 
    h1.hero-title, 
    .hero-title.poppins-title,
    .hero-title *,
    .hero-title .typewriter-container,
    .hero-title .typewriter-text,
    .hero-title .text-blue-highlight,
    .hero-title .text-orange,
    .hero-title .line-1-wrap,
    .hero-title .line-2-wrap {
        font-family: 'Poppins', sans-serif !important;
        font-size: 22px !important;
        font-weight: 800 !important;
        line-height: 1.3 !important;
        letter-spacing: -0.025em !important;
    }

    .hero-title .line-1-wrap,
    .hero-title .line-2-wrap {
        white-space: nowrap !important;
        display: inline-block !important;
    }
}

@media (max-width: 360px) {
    .hero-title, 
    h1.hero-title, 
    .hero-title.poppins-title,
    .hero-title * {
        font-size: 19.5px !important;
    }
}



/* ==========================================================================
   PC LOCKED TYPOGRAPHY (MIN-WIDTH: 769PX)
   ========================================================================== */
@media (min-width: 769px) {
    body, 
    p, 
    .hero-description,
    .pricing-anchor,
    .pricing-anchor span,
    .btn-hero-primary, 
    .btn-hero-secondary, 
    .btn-pricing-cta, 
    .btn-blue-cta, 
    .btn-black,
    .micro-copy, 
    .cta-subtext,
    .categories-subline,
    .process-subtitle,
    .step-desc, 
    .step-description,
    .pricing-features-list span,
    .pricing-feature-item span,
    .notice-box, 
    .delivery-notice-box,
    .whats-inside-subheadline,
    .testimonial-quote,
    .author-name,
    .faq-question-btn,
    .faq-answer-panel p,
    .footer-col-brand p,
    .vertical-hot-links a,
    .white-support-box p,
    .support-email-link,
    .footer-bottom-row p {
        font-size: 18px !important;
    }
}

/* ==========================================================================
   REVERTED MOBILE STYLES (MAX-WIDTH: 768PX)
   ========================================================================== */
@media (max-width: 768px) {
    .leadvault-hero {
        padding-top: 0 !important;
        padding-bottom: 24px !important;
    }

    .site-header {
        background: transparent !important;
        padding-top: 14px !important;
        padding-bottom: 14px !important;
        margin-top: 0 !important;
    }

    .header-container {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }

    .hero-container.leadvault-grid {
        padding-top: 16px !important;
        padding-left: 16px !important;
        padding-right: 16px !important;
        gap: 0 !important;
    }

    .hero-content {
        margin: 0 !important;
        padding: 0 !important;
    }

    .badge-pill {
        margin: 0 auto 16px auto !important;
        font-size: 14px !important;
    }

    .hero-title, 
    h1.hero-title, 
    .hero-title.poppins-title,
    .hero-title *,
    .hero-title .typewriter-container,
    .hero-title .typewriter-text,
    .hero-title .text-blue-highlight,
    .hero-title .text-orange,
    .hero-title .line-nowrap,
    .hero-title .line-1-wrap,
    .hero-title .line-2-wrap {
        font-family: 'Poppins', sans-serif !important;
        font-size: 32px !important;
        font-weight: 800 !important;
        line-height: 1.25 !important;
        letter-spacing: -0.02em !important;
    }

    .hero-title {
        text-align: center !important;
        margin-top: 0 !important;
        margin-bottom: 16px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        padding-left: 4px !important;
        padding-right: 4px !important;
    }

    .hero-title .line-nowrap,
    .hero-title .line-1-wrap,
    .hero-title .line-2-wrap {
        white-space: normal !important;
        display: inline !important;
    }

    .hero-description {
        font-size: 16.5px !important;
        line-height: 1.6 !important;
        margin-top: 0 !important;
        margin-bottom: 16px !important;
        max-width: 100% !important;
        padding: 0 4px !important;
    }

    .feature-highlights-row {
        margin-top: 0 !important;
        margin-bottom: 16px !important;
        gap: 6px !important;
    }

    .feature-item {
        gap: 6px !important;
    }

    .feature-text {
        gap: 2px !important;
    }

    .feature-text strong { font-size: 13.5px !important; }
    .feature-text span { font-size: 12.5px !important; }

    .pricing-anchor {
        margin-top: 0 !important;
        margin-bottom: 16px !important;
        font-size: 15.5px !important;
    }

    .discount-tag { font-size: 13px !important; }

    .hero-actions {
        margin-top: 0 !important;
        margin-bottom: 16px !important;
        gap: 10px !important;
    }

    .btn-hero-primary, .btn-hero-secondary, .btn-pricing-cta, .btn-blue-cta, .btn-black {
        font-size: 16.5px !important;
        padding: 14px 18px !important;
    }

    .micro-copy, .cta-subtext {
        margin-top: 0 !important;
        margin-bottom: 16px !important;
        font-size: 15px !important;
    }

    .hero-visual, .leadvault-visual {
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }

    .replica-table-container {
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }

    .whats-inside-subheadline { font-size: 18px !important; }
    .faq-question-btn { font-size: 17.5px !important; }
    .faq-answer-panel p { font-size: 16.5px !important; }
}
/* Ensure Hero Table Content Remains Compact and Excluded from 17px */
.replica-table-container table td,
.replica-table-container table th,
.replica-table-container table span,
.compact-2line-table td,
.compact-2line-table th,
.compact-2line-table span,
.window-filename {
    font-size: 0.67rem !important;
}

@media (max-width: 768px) {
    .replica-table-container table td,
    .replica-table-container table th,
    .replica-table-container table span,
    .compact-2line-table td,
    .compact-2line-table th,
    .compact-2line-table span {
        font-size: 0.65rem !important;
    }
}



/* ==========================================================================
   PC LOCKED TYPOGRAPHY (MIN-WIDTH: 769PX)
   ========================================================================== */
@media (min-width: 769px) {
    body, 
    p, 
    .hero-description,
    .pricing-anchor,
    .pricing-anchor span,
    .btn-hero-primary, 
    .btn-hero-secondary, 
    .btn-pricing-cta, 
    .btn-blue-cta, 
    .btn-black,
    .micro-copy, 
    .cta-subtext,
    .categories-subline,
    .process-subtitle,
    .step-desc, 
    .step-description,
    .pricing-features-list span,
    .pricing-feature-item span,
    .notice-box, 
    .delivery-notice-box,
    .whats-inside-subheadline,
    .testimonial-quote,
    .author-name,
    .faq-question-btn,
    .faq-answer-panel p,
    .footer-col-brand p,
    .vertical-hot-links a,
    .white-support-box p,
    .support-email-link,
    .footer-bottom-row p {
        font-size: 18px !important;
    }
}

/* ==========================================================================
   REVERTED MOBILE STYLES (MAX-WIDTH: 768PX)
   ========================================================================== */
@media (max-width: 768px) {
    .leadvault-hero {
        padding-top: 0 !important;
        padding-bottom: 24px !important;
    }

    .site-header {
        background: transparent !important;
        padding-top: 14px !important;
        padding-bottom: 14px !important;
        margin-top: 0 !important;
    }

    .header-container {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }

    .hero-container.leadvault-grid {
        padding-top: 16px !important;
        padding-left: 16px !important;
        padding-right: 16px !important;
        gap: 0 !important;
    }

    .hero-content {
        margin: 0 !important;
        padding: 0 !important;
    }

    .badge-pill {
        margin: 0 auto 16px auto !important;
        font-size: 14px !important;
    }

    .hero-title, 
    h1.hero-title, 
    .hero-title.poppins-title,
    .hero-title *,
    .hero-title .typewriter-container,
    .hero-title .typewriter-text,
    .hero-title .text-blue-highlight,
    .hero-title .text-orange,
    .hero-title .line-nowrap,
    .hero-title .line-1-wrap,
    .hero-title .line-2-wrap {
        font-family: 'Poppins', sans-serif !important;
        font-size: 32px !important;
        font-weight: 800 !important;
        line-height: 1.25 !important;
        letter-spacing: -0.02em !important;
    }

    .hero-title {
        text-align: center !important;
        margin-top: 0 !important;
        margin-bottom: 16px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        padding-left: 4px !important;
        padding-right: 4px !important;
    }

    .hero-title .line-nowrap,
    .hero-title .line-1-wrap,
    .hero-title .line-2-wrap {
        white-space: normal !important;
        display: inline !important;
    }

    .hero-description {
        font-size: 16.5px !important;
        line-height: 1.6 !important;
        margin-top: 0 !important;
        margin-bottom: 16px !important;
        max-width: 100% !important;
        padding: 0 4px !important;
    }

    .feature-highlights-row {
        margin-top: 0 !important;
        margin-bottom: 16px !important;
        gap: 6px !important;
    }

    .feature-item {
        gap: 6px !important;
    }

    .feature-text {
        gap: 2px !important;
    }

    .feature-text strong { font-size: 13.5px !important; }
    .feature-text span { font-size: 12.5px !important; }

    .pricing-anchor {
        margin-top: 0 !important;
        margin-bottom: 16px !important;
        font-size: 15.5px !important;
    }

    .discount-tag { font-size: 13px !important; }

    .hero-actions {
        margin-top: 0 !important;
        margin-bottom: 16px !important;
        gap: 10px !important;
    }

    .btn-hero-primary, .btn-hero-secondary, .btn-pricing-cta, .btn-blue-cta, .btn-black {
        font-size: 16.5px !important;
        padding: 14px 18px !important;
    }

    .micro-copy, .cta-subtext {
        margin-top: 0 !important;
        margin-bottom: 16px !important;
        font-size: 15px !important;
    }

    .hero-visual, .leadvault-visual {
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }

    .replica-table-container {
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }

    .whats-inside-subheadline { font-size: 18px !important; }
    .faq-question-btn { font-size: 17.5px !important; }
    .faq-answer-panel p { font-size: 16.5px !important; }
}
/* Ensure Hero Table Content Remains Compact and Excluded from 18px */
.replica-table-container table td,
.replica-table-container table th,
.replica-table-container table span,
.compact-2line-table td,
.compact-2line-table th,
.compact-2line-table span,
.window-filename {
    font-size: 0.67rem !important;
}

@media (max-width: 768px) {
    .replica-table-container table td,
    .replica-table-container table th,
    .replica-table-container table span,
    .compact-2line-table td,
    .compact-2line-table th,
    .compact-2line-table span {
        font-size: 0.65rem !important;
    }
}



/* ==========================================================================
   STICKY BOTTOM BUY NOW RIBBON (DARK SLATE - PC INLINE & MOBILE STACK)
   ========================================================================== */
.sticky-bottom-ribbon {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: rgba(15, 23, 42, 0.96) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    backdrop-filter: blur(16px) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.12) !important;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.3) !important;
    padding: 10px 0 !important;
    transition: transform 0.3s ease, opacity 0.3s ease !important;
}

.ribbon-inner-container {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 24px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 20px !important;
}

.ribbon-left-info {
    display: flex !important;
    align-items: center !important;
    gap: 16px !important;
    flex-wrap: wrap !important;
}

.ribbon-badge-tag {
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    border-radius: 999px !important;
    padding: 4px 12px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    color: #f8fafc !important;
}

.ribbon-fire-icon {
    font-size: 14px !important;
}

.ribbon-price-wrap {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
}

.ribbon-current-price {
    font-family: 'Poppins', sans-serif !important;
    font-size: 22px !important;
    font-weight: 800 !important;
    color: #ffffff !important;
    letter-spacing: -0.01em !important;
}

.ribbon-original-price {
    color: #94a3b8 !important;
    font-size: 14px !important;
    font-weight: 500 !important;
}

.ribbon-discount-pill {
    background: #ea580c !important;
    color: #ffffff !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    padding: 3px 8px !important;
    border-radius: 6px !important;
    letter-spacing: 0.03em !important;
    text-transform: uppercase !important;
}

.ribbon-meta-pill {
    color: #ffffff !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    letter-spacing: 0.01em !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 4px !important;
}

.ribbon-meta-pill strong {
    color: #ffffff !important;
    font-weight: 800 !important;
}

.ribbon-mobile-powered {
    display: none !important;
}

.ribbon-right-action {
    display: flex !important;
    align-items: center !important;
}

.ribbon-buy-btn {
    background: linear-gradient(135deg, #1E5EFF 0%, #0047E0 100%) !important;
    color: #ffffff !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 15.5px !important;
    font-weight: 700 !important;
    padding: 11px 26px !important;
    border-radius: 10px !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    text-decoration: none !important;
    box-shadow: 0 4px 16px rgba(30, 94, 255, 0.45) !important;
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1) !important;
    white-space: nowrap !important;
}

.ribbon-buy-btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 22px rgba(30, 94, 255, 0.6) !important;
    background: linear-gradient(135deg, #3b82f6 0%, #1E5EFF 100%) !important;
}

body {
    padding-bottom: 75px !important;
}

@media (max-width: 768px) {
    body {
        padding-bottom: 75px !important;
    }
    .sticky-bottom-ribbon {
        padding: 9px 0 !important;
        padding-bottom: max(11px, env(safe-area-inset-bottom)) !important;
    }
    .ribbon-inner-container {
        padding: 0 16px !important;
        gap: 12px !important;
    }
    .ribbon-badge-tag {
        display: none !important;
    }
    .ribbon-meta-pill.desktop-only {
        display: none !important;
    }
    .ribbon-left-info {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 2px !important;
    }
    .ribbon-price-wrap {
        gap: 6px !important;
    }
    .ribbon-current-price {
        font-size: 20px !important;
        color: #ffffff !important;
    }
    .ribbon-original-price {
        font-size: 13px !important;
    }
    .ribbon-discount-pill {
        font-size: 10px !important;
        padding: 2px 6px !important;
    }
    .ribbon-mobile-powered {
        display: block !important;
        font-size: 11px !important;
        color: #ffffff !important;
        font-family: 'Inter', sans-serif !important;
        font-weight: 600 !important;
        line-height: 1.2 !important;
        margin-top: 1px !important;
        white-space: nowrap !important;
    }
    .ribbon-mobile-powered strong {
        color: #ffffff !important;
        font-weight: 800 !important;
    }
    .ribbon-buy-btn {
        padding: 9px 18px !important;
        font-size: 14px !important;
        border-radius: 8px !important;
    }
}

/* CATEGORY LEAD COUNT TAG (LARGER BLACK BOX + CRISP WHITE TEXT) */
.cat-tag-pill {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: #0f172a !important; /* Solid sleek black */
    color: #ffffff !important;      /* Crisp white text */
    border: 1px solid #334155 !important;
    border-radius: 999px !important;
    padding: 5px 14px !important;
    font-size: 14.5px !important;
    font-weight: 800 !important;
    font-family: 'Poppins', 'Inter', sans-serif !important;
    letter-spacing: 0.01em !important;
    margin-top: 8px !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
    white-space: nowrap !important;
    line-height: 1.2 !important;
}

.cat-tag-dot {
    display: none !important;
}



/* ==========================================================================
   UNIFORM PRICING FEATURES LIST WITH IDENTICAL LINE PADDING & WEBP LOGOS
   ========================================================================== */
.pricing-features-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 0 24px 0 !important;
    text-align: left !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
}

.pricing-features-list li {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    padding: 11px 0 !important;
    border-bottom: 1px solid #f1f5f9 !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 15.5px !important;
    color: #1e293b !important;
    font-weight: 500 !important;
    line-height: 1.35 !important;
    min-height: 48px !important;
    box-sizing: border-box !important;
}

.pricing-features-list li:last-child {
    border-bottom: none !important;
    padding-bottom: 0 !important;
}

.pricing-features-list li:first-child {
    padding-top: 0 !important;
}

.pricing-feature-icon-box {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
    width: 24px !important;
    height: 24px !important;
}

.pricing-social-group {
    display: inline-flex !important;
    align-items: center !important;
    gap: 5px !important;
    flex-shrink: 0 !important;
}

.pricing-social-img {
    width: 20px !important;
    height: 20px !important;
    border-radius: 5px !important;
    display: inline-block !important;
    object-fit: cover !important;
    vertical-align: middle !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1) !important;
}



/* FOOTER REAL SOCIAL WEBP LOGOS (INSTAGRAM & GMAIL) */
.footer-social-img {
    width: 26px !important;
    height: 26px !important;
    border-radius: 6px !important;
    display: block !important;
    object-fit: cover !important;
}

.social-icon-btn {
    width: 44px !important;
    height: 44px !important;
    border-radius: 12px !important;
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease !important;
}

.social-icon-btn:hover {
    background: rgba(255, 255, 255, 0.18) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3) !important;
}



.ribbon-right-action {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 4px !important;
}

.ribbon-powered-text {
    font-size: 11px !important;
    color: #64748b !important;
    font-weight: 500 !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 4px !important;
    letter-spacing: 0.01em !important;
    white-space: nowrap !important;
}

.ribbon-powered-text strong {
    color: #ffffff !important; /* Razorpay deep blue / dark slate */
    font-weight: 700 !important;
}

@media (max-width: 768px) {
    .ribbon-powered-text {
        font-size: 9.5px !important;
        gap: 3px !important;
    }
}



/* GUARANTEED PURE WHITE RIBBON POWERED BY RAZORPAY */
#sticky-buy-ribbon .ribbon-powered-text,
#sticky-buy-ribbon .ribbon-powered-text *,
#sticky-buy-ribbon .ribbon-powered-text strong,
.sticky-bottom-ribbon .ribbon-powered-text,
.sticky-bottom-ribbon .ribbon-powered-text strong {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    text-shadow: none !important;
    opacity: 1 !important;
    visibility: visible !important;
}
